monkey-front-core 0.0.137 → 0.0.138

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.
@@ -591,9 +591,9 @@ class MonkeyEcxFormatTaxPipe {
591
591
  return '';
592
592
  const stringTax = tax.toString();
593
593
  const stringTaxLimited = stringTax.slice(0, stringTax.indexOf('.') + decimalDigits + 1);
594
- return Number(stringTaxLimited).toLocaleString('pt-br', {
594
+ return `${Number(stringTaxLimited).toLocaleString('pt-br', {
595
595
  maximumFractionDigits: decimalDigits,
596
- });
596
+ })} %`;
597
597
  }
598
598
  }
599
599
  MonkeyEcxFormatTaxPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MonkeyEcxFormatTaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });