Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #369 from LiskHQ/361-load-more-transactions-bug
Browse files Browse the repository at this point in the history
Fix load more transactions jumps to top bug - Closes #361
  • Loading branch information
slaweet authored Jun 9, 2017
2 parents 2a2e959 + 3aac101 commit 2911aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/transactions/transactions.pug
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
md-card.offline-hide
md-card-content(ng-show='$ctrl.loaded')
md-content(layout='row', layout-align='start center', layout-padding, ng-show='!$ctrl.transactions.length')
md-card-content()
md-content(layout='row', layout-align='start center', layout-padding, ng-show='!$ctrl.transactions.length && $ctrl.loaded')
div(flex)
span.empty No transactions
md-content(layout='column', layout-align='center center', ng-hide='!$ctrl.transactions.length')
md-content(layout='column', layout-align='center center')
md-table-container(ng-show='$ctrl.transactions.length')
table(md-table)
thead(md-head)
Expand Down

0 comments on commit 2911aa2

Please sign in to comment.