Merge fix for displaying currency symbol

This commit is contained in:
Hillel Coren 2016-11-29 19:52:04 +02:00
parent 3d8a9aa34c
commit b3b18e1510

View File

@ -57,7 +57,7 @@
}
if (account && ! decorator) {
decorator = account.show_currency_code ? 'code' : 'symbol';
decorator = parseInt(account.show_currency_code) ? 'code' : 'symbol';
}
return formatMoney(value, currencyId, countryId, decorator)