Changes as requested by PR.

This commit is contained in:
Brendon Duncan 2018-07-02 11:20:34 +12:00
commit ccf2dd4586
3 changed files with 7 additions and 6 deletions

View file

@ -79,7 +79,7 @@ angular.module('copayApp.services').factory('txFormatService', function($filter,
var lessThanPrefix = '';
if (subcent) {
roundedNum = 0.01;
lessThanPrefix = '< '
lessThanPrefix = '< ';
}
var v1 = $filter('formatFiatAmount')(roundedNum);
if (!v1) return null;