full precision on tx details modal

This commit is contained in:
Ivan Socolsky 2016-06-23 18:46:48 -03:00
commit d477effd07
No known key found for this signature in database
GPG key ID: FAECE6A05FAA4F56
4 changed files with 14 additions and 7 deletions

View file

@ -692,8 +692,8 @@ angular.module('copayApp.controllers').controller('indexController', function($r
$log.debug('Fixing Tx Cache Unit to:' + name)
lodash.each(txs, function(tx) {
tx.amountStr = profileService.formatAmount(tx.amount, config.unitName) + name;
tx.feeStr = profileService.formatAmount(tx.fees, config.unitName) + name;
tx.amountStr = profileService.formatAmount(tx.amount) + name;
tx.feeStr = profileService.formatAmount(tx.fees) + name;
});
};