@sd-angular/core 1.0.50 → 1.0.51

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.
@@ -4340,7 +4340,7 @@
4340
4340
  case 4:
4341
4341
  if (column.type === 'datetime' && result.display.value) {
4342
4342
  result.display.hasHtml = true;
4343
- result.display.html = "<span class=\"d-block T14R text-black400\">" + Date.toFormat(value, 'HH:mm') + "</span><span class=\"d-block T14R\">" + Date.toFormat(value, 'dd/MM/yyyy') + "</span>";
4343
+ result.display.html = "<span class=\"d-block T14R text-black400\">" + Date.toFormat(result.display.value, 'HH:mm') + "</span><span class=\"d-block T14R\">" + Date.toFormat(result.display.value, 'dd/MM/yyyy') + "</span>";
4344
4344
  }
4345
4345
  return [3 /*break*/, 9];
4346
4346
  case 5:
@@ -4371,7 +4371,7 @@
4371
4371
  result.display.value = Date.toFormat(value, column.type === 'date' ? 'dd/MM/yyyy' : 'dd/MM/yyyy HH:mm');
4372
4372
  if (column.type === 'datetime' && result.display.value) {
4373
4373
  result.display.hasHtml = true;
4374
- result.display.html = "<span class=\"d-block T14R text-black400\">" + Date.toFormat(value, 'HH:mm') + "</span><span class=\"d-block T14R\">" + Date.toFormat(value, 'dd/MM/yyyy') + "</span>";
4374
+ result.display.html = "<span class=\"d-block T14R text-black400\">" + Date.toFormat(result.display.value, 'HH:mm') + "</span><span class=\"d-block T14R\">" + Date.toFormat(result.display.value, 'dd/MM/yyyy') + "</span>";
4375
4375
  }
4376
4376
  }
4377
4377
  }