From c50fab16cb5ce6e3f5811d0cc5c953b338ad4187 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Sat, 4 Jun 2016 17:33:06 -0300 Subject: [PATCH] add comment header --- src/js/controllers/preferencesHistory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/controllers/preferencesHistory.js b/src/js/controllers/preferencesHistory.js index ac1e99f93..1f7e29418 100644 --- a/src/js/controllers/preferencesHistory.js +++ b/src/js/controllers/preferencesHistory.js @@ -64,7 +64,7 @@ angular.module('copayApp.controllers').controller('preferencesHistory', var satToBtc = 1 / 100000000; self.csvContent = []; self.csvFilename = 'Copay-' + (self.alias || self.walletName) + '.csv'; - self.csvHeader = ['Date', 'Destination', 'Description', 'Amount', 'Currency', 'Txid', 'Creator', 'Copayers']; + self.csvHeader = ['Date', 'Destination', 'Description', 'Amount', 'Currency', 'Txid', 'Creator', 'Copayers', 'Comment']; var _amount, _note, _copayers, _creator, _comment; data.forEach(function(it, index) {