Merge pull request #543 from yemel/fix/transaction-pagination
Add empty message on transaction proposal list
This commit is contained in:
commit
0376ace91f
1 changed files with 3 additions and 1 deletions
|
|
@ -514,7 +514,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<pagination ng-show="!onlyPending" total-items="txs.length" items-per-page="txpItemsPerPage" page="txpCurrentPage" on-select-page="show()" class="pagination-small primary"></pagination>
|
||||
<p ng-show="onlyPending && txs.length == 0">No pending transactions proposals.</p>
|
||||
<p ng-show="!onlyPending && txs.length == 0">No transactions proposals yet.</p>
|
||||
<pagination ng-show="!onlyPending && txs.length > 0" total-items="txs.length" items-per-page="txpItemsPerPage" page="txpCurrentPage" on-select-page="show()" class="pagination-small primary"></pagination>
|
||||
</div>
|
||||
<div class="large-12 columns">
|
||||
<h4>Last transactions</h4>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue