tweak latest transactions txid truncation point

This commit is contained in:
Mononaut 2023-01-13 17:03:02 -06:00
parent d7767a053a
commit c69f2f2bc2
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -129,7 +129,7 @@
<tr *ngFor="let transaction of transactions$ | async; let i = index;">
<td class="table-cell-txid">
<a [routerLink]="['/tx' | relativeUrl, transaction.txid]">
<app-truncate [text]="transaction.txid" [lastChars]="6"></app-truncate>
<app-truncate [text]="transaction.txid" [lastChars]="5"></app-truncate>
</a>
</td>
<td class="table-cell-satoshis"><app-amount *ngIf="(network$ | async) !== 'liquid' && (network$ | async) !== 'liquidtestnet'; else liquidAmount" [satoshis]="transaction.value" digitsInfo="1.2-4" [noFiat]="true"></app-amount><ng-template #liquidAmount i18n="shared.confidential">Confidential</ng-template></td>