This commit is contained in:
Gabriel Bazán 2016-02-22 11:37:31 -03:00
commit a69f5ca34d

View file

@ -1039,6 +1039,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setCompactTxHistory = function() {
self.nextTxHistory = self.historyShowMoreLimit;
self.txHistory = self.completeHistory.slice(0, self.historyShowLimit);
self.txHistoryToList = self.txHistory;
self.historyShowMore = self.completeHistory.length > self.historyShowLimit;
};