Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #872 from LiskHQ/859-txs-pagination-filter
Browse files Browse the repository at this point in the history
Show only positive numbers for the transaction pagination - #859
  • Loading branch information
MichalTuleja authored Dec 20, 2018
2 parents 2dae46a + ef7bbdb commit df207d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transactions/transactions.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const TransactionsConstructor = function ($rootScope, $stateParams, $state, $htt
} else {
arr = [1, 2, 3, 4, 5];
}
return arr;
return arr.filter(el => el > 0);
};

vm.loadPageOffset = (offset) => {
Expand Down

0 comments on commit df207d7

Please sign in to comment.