@hmcts/ccd-case-ui-toolkit 7.3.48-pofcc-105 → 7.3.49-cve-fix

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.
@@ -19809,18 +19809,12 @@ class MoneyGbpInputComponent {
19809
19809
  writeValue(obj) {
19810
19810
  if (obj) {
19811
19811
  this.rawValue = obj;
19812
- // If already contains decimal, use it directly
19813
- if (obj.includes('.')) {
19814
- this.displayValue = obj;
19815
- }
19816
- else {
19817
- const integerPart = obj.slice(0, -2) || '0';
19818
- let decimalPart = obj.slice(-2);
19819
- while (2 > decimalPart.length) {
19820
- decimalPart += '0';
19821
- }
19822
- this.displayValue = [integerPart, decimalPart].join('.');
19812
+ const integerPart = obj.slice(0, -2) || '0';
19813
+ let decimalPart = obj.slice(-2);
19814
+ while (2 > decimalPart.length) {
19815
+ decimalPart += '0';
19823
19816
  }
19817
+ this.displayValue = [integerPart, decimalPart].join('.');
19824
19818
  }
19825
19819
  }
19826
19820
  registerOnChange(fn) {