fix stray space, automatically show more outputs if <5 remaining

This commit is contained in:
Mononaut
2022-11-22 18:05:20 +09:00
parent 6d6200b3b6
commit 3df69bf550
2 changed files with 16 additions and 6 deletions

View File

@@ -153,7 +153,7 @@
<ng-template #showMoreInputsLabel>
<span i18n="show-more">Show more</span>
</ng-template>
({{ tx.vin.length - getVinLimit(tx) }} <span i18n="inputs-remaining">remaining</span> )
({{ tx.vin.length - getVinLimit(tx) }} <span i18n="inputs-remaining">remaining</span>)
</button>
</td>
</tr>
@@ -270,7 +270,7 @@
<ng-template #showMoreOutputsLabel>
<span i18n="show-more">Show more</span>
</ng-template>
({{ tx.vout.length - getVoutLimit(tx) }} <span i18n="outputs-remaining">remaining</span> )
({{ tx.vout.length - getVoutLimit(tx) }} <span i18n="outputs-remaining">remaining</span>)
</button>
</td>
</tr>