diff --git a/frontend/src/app/components/tracker/tracker.component.ts b/frontend/src/app/components/tracker/tracker.component.ts index 64991b8ed..68ce46a83 100644 --- a/frontend/src/app/components/tracker/tracker.component.ts +++ b/frontend/src/app/components/tracker/tracker.component.ts @@ -757,6 +757,8 @@ export class TrackerComponent implements OnInit, OnDestroy { get showAccelerationSummary(): boolean { return ( this.tx + && !this.replaced + && !this.isCached && !this.tx.acceleration && this.acceleratorAvailable && this.eligibleForAcceleration diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 93c91ef4b..7b401f8da 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -985,6 +985,8 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { get showAccelerationSummary(): boolean { return ( this.tx + && !this.replaced + && !this.isCached && !this.tx.acceleration && this.acceleratorAvailable && this.eligibleForAcceleration