cilog-lib 1.13.4 → 1.13.5

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.
@@ -1449,7 +1449,7 @@ class CilogGridComponent {
1449
1449
  return suffix ? `${formattedValue} ${suffix}` : formattedValue;
1450
1450
  case ColType.Date:
1451
1451
  let val = params.data[params.colDef.field].value;
1452
- if (val != null) {
1452
+ if (val != null && col.options != null) {
1453
1453
  switch (col.options['mode']) {
1454
1454
  case 'year':
1455
1455
  return val.getFullYear().toString();