@fundamental-ngx/core 0.58.0-rc.6 → 0.58.0-rc.60

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.
@@ -922,7 +922,7 @@ class FdDatetimeAdapter extends DatetimeAdapter {
922
922
  * Date.parse('10:30 AM') doesn't work so we need do a trick
923
923
  * and prepend it by a date string.
924
924
  */
925
- const dateStr = this.format(this.now(), { year: 'numeric', month: 'numeric', day: 'numeric' });
925
+ const dateStr = new Intl.DateTimeFormat('en-GB').format(new Date());
926
926
  const dateTimeString = `${dateStr} ${timeStr}`;
927
927
  return new Date(Date.parse(dateTimeString));
928
928
  }