@colijnit/corecomponents_v12 256.1.27 → 256.1.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.
@@ -10513,7 +10513,7 @@
10513
10513
  else {
10514
10514
  if (!value)
10515
10515
  return '';
10516
- if (value.includes('T00:00:00')) {
10516
+ if (typeof value === 'string' && value.includes('T00:00:00')) {
10517
10517
  var _b = __read(value.replace('T00:00:00', '').split('-'), 3), year = _b[0], month = _b[1], day = _b[2];
10518
10518
  return day + "-" + month + "-" + year;
10519
10519
  }