monkey-front-core 0.0.496 → 0.0.497
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/core/pipes/monkeyecx-format-currency.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs +1 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +1 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.497.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.496.tgz +0 -0
|
@@ -754,7 +754,7 @@ class MonkeyEcxFormatCurrencyPipe {
|
|
|
754
754
|
if (currency === 'CLP') {
|
|
755
755
|
let fmt = this.currencyPipe.transform(value, '$', symbol, '1.0-0', locale);
|
|
756
756
|
fmt = `${fmt}`.replace('$', '');
|
|
757
|
-
return `${fmt}
|
|
757
|
+
return `${fmt}${currency}`;
|
|
758
758
|
}
|
|
759
759
|
return this.currencyPipe.transform(value, currency, symbol, '', locale);
|
|
760
760
|
}
|