cilog-lib 1.12.28 → 1.12.29

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.
@@ -1394,7 +1394,7 @@ class CilogGridComponent {
1394
1394
  minimumFractionDigits: col.options['minDecimales'] != null ? col.options['minDecimales'] : 2,
1395
1395
  maximumFractionDigits: col.options['maxDecimales'] != null ? col.options['maxDecimales'] : 2
1396
1396
  });
1397
- return formatFr.format(params.data[params.colDef.field].value);
1397
+ return params.data[params.colDef.field].value == null ? '' : formatFr.format(params.data[params.colDef.field].value);
1398
1398
  }
1399
1399
  else {
1400
1400
  return params.data[params.colDef.field].value;