fix tx templ

pull/541/head
sidhujag 2020-09-13 21:11:24 -07:00
parent 6020c828ea
commit fee967116d
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@
{{- range $tokenTransfer := $tx.TokenTransferSummary -}}{{if $tokenTransfer}}
<tr>
<td class="data ellipsis"><a href="/asset/{{$tokenTransfer.Token}}">{{$tokenTransfer.Token}}</a>&nbsp;<span class="text-muted">{{formatDecodeBase64 $tokenTransfer.Symbol}}</span></td>
<td class="data ellipsis">{{formatAmountWithDecimals $tokenTransfer.ValueIn $tokenTransfer.Decimals}} {{$tokenTransfer.Token}}</td>
<td class="data ellipsis">{{formatAmountWithDecimals $tokenTransfer.Value $tokenTransfer.Decimals}} {{$tokenTransfer.Token}}</td>
<td class="data ellipsis">{{formatAmountWithDecimals $tokenTransfer.ValueIn $tokenTransfer.Decimals}} {{formatDecodeBase64 $tokenTransfer.Symbol}}</td>
<td class="data ellipsis">{{formatAmountWithDecimals $tokenTransfer.Value $tokenTransfer.Decimals}} {{formatDecodeBase64 $tokenTransfer.Symbol}}</td>
</tr>
{{- end -}}{{- end -}}
</tbody>