From ba97e6e733ee9c3f03047b36a2f97c476143eeee Mon Sep 17 00:00:00 2001 From: rodribp Date: Fri, 27 Feb 2026 12:29:57 -0600 Subject: [PATCH] fix: bumpy UI when loading accelerationInfo --- .../transaction-details.component.html | 28 ++++++++++++++----- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/components/transaction/transaction-details/transaction-details.component.html b/frontend/src/app/components/transaction/transaction-details/transaction-details.component.html index 4ae01e01a..50b8ddbfa 100644 --- a/frontend/src/app/components/transaction/transaction-details/transaction-details.component.html +++ b/frontend/src/app/components/transaction/transaction-details/transaction-details.component.html @@ -46,7 +46,7 @@ - @if (!isLoadingTx && !tx?.status?.confirmed && isAcceleration && ((cpfpInfo && hasEffectiveFeeRate) || accelerationInfo)) { + @if (!isLoadingTx && !tx?.status?.confirmed && isAcceleration) { } @else { @@ -275,12 +275,26 @@ - - - - - - + @if (accelerationInfo) { + + + + + + + } @else { + + + + + + + +
+ + + + }