@colijnit/corecomponents_v12 257.1.30 → 257.1.32
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.
- package/bundles/colijnit-corecomponents_v12.umd.js +1 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +1 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/package.json +1 -1
|
@@ -10572,7 +10572,7 @@
|
|
|
10572
10572
|
else {
|
|
10573
10573
|
if (!value)
|
|
10574
10574
|
return '';
|
|
10575
|
-
if (value.includes('T00:00:00')) {
|
|
10575
|
+
if (typeof value === 'string' && value.includes('T00:00:00')) {
|
|
10576
10576
|
var _b = __read(value.replace('T00:00:00', '').split('-'), 3), year = _b[0], month = _b[1], day = _b[2];
|
|
10577
10577
|
return day + "-" + month + "-" + year;
|
|
10578
10578
|
}
|