Merge pull request #3059 from cmgustavo/bug/fees-nbBlocks
Hide estimation time if nbBlocks is null
This commit is contained in:
commit
7462a49066
1 changed files with 3 additions and 1 deletions
|
|
@ -15,7 +15,9 @@
|
|||
<div class="row column m20t">
|
||||
<div class="text-gray size-12 text-center" ng-repeat="fee in (index.network == 'livenet' ? index.feeLevels.livenet :
|
||||
index.feeLevels.testnet)" ng-if="fee.level == index.currentFeeLevel">
|
||||
<span translate>Average confirmation time: {{fee.nbBlocks * 10}} minutes</span>. <br>
|
||||
<div ng-show="fee.nbBlocks">
|
||||
<span translate>Average confirmation time: {{fee.nbBlocks * 10}} minutes</span>.
|
||||
</div>
|
||||
<span class="size-12 text-light" translate>Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue