mirror of
https://github.com/mempool/mempool.git
synced 2025-01-19 05:34:03 +01:00
Fix broken loader in accelerate fee rate line
This commit is contained in:
parent
06b696f0bb
commit
6aa3e38af2
@ -640,9 +640,7 @@
|
||||
<td>
|
||||
<div class="effective-fee-container">
|
||||
@if (accelerationInfo?.acceleratedFeeRate && (!tx.effectiveFeePerVsize || accelerationInfo.acceleratedFeeRate >= tx.effectiveFeePerVsize || tx.acceleration)) {
|
||||
@if (!tx.effectiveFeePerVsize) { <!-- Avoid briefly displaying a wrong accelerated fee rate while loading -->
|
||||
<span class="skeleton-loader"></span>
|
||||
} @else {
|
||||
@if (tx.effectiveFeePerVsize) { <!-- Avoid briefly displaying a wrong accelerated fee rate while loading -->
|
||||
<app-fee-rate [fee]="accelerationInfo.acceleratedFeeRate"></app-fee-rate>
|
||||
}
|
||||
} @else {
|
||||
|
@ -158,7 +158,6 @@
|
||||
|
||||
.effective-fee-container {
|
||||
display: block;
|
||||
width: 100%;
|
||||
@media (min-width: 768px){
|
||||
display: inline-block;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user