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