From a69f5ca34d79ae00c33cbbd8dd710d2c5ea961f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Mon, 22 Feb 2016 11:37:31 -0300 Subject: [PATCH] refactor --- src/js/controllers/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/controllers/index.js b/src/js/controllers/index.js index 3f1a19420..9c473edc7 100644 --- a/src/js/controllers/index.js +++ b/src/js/controllers/index.js @@ -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; };