@ngx-smz/core 19.5.0 → 19.5.1

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.
@@ -1300,6 +1300,9 @@ function fixDateProperties(data) {
1300
1300
  const fixedDate = fixStringDate$1(data[key]);
1301
1301
  data[key] = new Date(fixedDate.getUTCFullYear(), fixedDate.getUTCMonth(), fixedDate.getUTCDate());
1302
1302
  }
1303
+ else if (key === 'createdAt') {
1304
+ data[key] = fixStringDate$1(data[key]);
1305
+ }
1303
1306
  else if (key === 'lastUpdate') {
1304
1307
  data[key] = fixStringDate$1(data[key]);
1305
1308
  }