iptdevs-design-system 3.1.639 → 3.1.640

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.
@@ -7385,8 +7385,9 @@ class CodSelfFormStepThreeComponent extends CodSelfManagedSteps {
7385
7385
  const enrollmentValueTwo = parseFloat(this.dataFinancing[0][1].replace(/[^\d.-]/g, ''));
7386
7386
  const firstQuotaValueTwo = parseFloat(this.dataFinancing[1][1].replace(/[^\d.-]/g, ''));
7387
7387
  this.totalInitialPayment = enrollmentValueTwo + firstQuotaValueTwo;
7388
+ console.log('linea, 246', this.totalInitialPayment);
7388
7389
  const totalInitialPaymentInteger = Math.round(this.totalInitialPayment);
7389
- const formattedTotalInitialPayment = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(totalInitialPaymentInteger);
7390
+ const formattedTotalInitialPayment = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0 }).format(totalInitialPaymentInteger);
7390
7391
  console.log('linea, 246', formattedTotalInitialPayment);
7391
7392
  const combinedRecord = [
7392
7393
  this.dataFinancing[0][0],