Fix accelerated badge in block overview tooltip
This commit is contained in:
@@ -61,10 +61,10 @@
|
||||
</td>
|
||||
</tr>
|
||||
{{ activeFilters.rbf }}
|
||||
<tr *ngIf="(!auditEnabled && tx && tx.status === 'accelerated') || filters.length">
|
||||
<tr *ngIf="(!auditEnabled && tx && (tx.status === 'accelerated' || tx.acc || acceleration)) || filters.length">
|
||||
<td colspan="2">
|
||||
<div class="tags mt-2" [class.any-mode]="filterMode === 'or'">
|
||||
<span *ngIf="!auditEnabled && tx && tx.status === 'accelerated'" class="badge badge-accelerated" i18n="transaction.audit.accelerated">Accelerated</span>
|
||||
<span *ngIf="!auditEnabled && tx && (tx.status === 'accelerated' || tx.acc || acceleration)" class="badge badge-accelerated" i18n="transaction.audit.accelerated">Accelerated</span>
|
||||
<ng-container *ngFor="let filter of filters;">
|
||||
<span class="btn badge filter-tag" [class.matching]="activeFilters[filter.key]">{{ filter.label }}</span>
|
||||
</ng-container>
|
||||
|
||||
Reference in New Issue
Block a user