@colijnit/corecomponents_v12 258.1.12 → 258.1.13

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.
@@ -10599,7 +10599,7 @@
10599
10599
  else {
10600
10600
  if (!value)
10601
10601
  return '';
10602
- if (value.includes('T00:00:00')) {
10602
+ if (typeof value === 'string' && value.includes('T00:00:00')) {
10603
10603
  var _b = __read(value.replace('T00:00:00', '').split('-'), 3), year = _b[0], month = _b[1], day = _b[2];
10604
10604
  return day + "-" + month + "-" + year;
10605
10605
  }