Skip to content

Commit

Permalink
fixed incorrect datepicker save format (#2609)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjosttveit authored Oct 21, 2024
1 parent b413ad1 commit a0c4fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/dateHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { locales } from 'src/utils/dateLocales';
export const DatepickerMinDateDefault = '1900-01-01T00:00:00Z';
export const DatepickerMaxDateDefault = '2100-01-01T23:59:59Z';
export const DatepickerFormatDefault = 'dd.MM.yyyy';
export const DatepickerSaveFormatTimestamp = "yyyy-MM-dd'T'HH:mm:ss'Z'";
export const DatepickerSaveFormatTimestamp = "yyyy-MM-dd'T'HH:mm:ssXXXXX";
export const PrettyDateAndTime = 'dd.MM.yyyy HH.mm.ss';
export const DatepickerSaveFormatNoTimestamp = 'yyyy-MM-dd';

Expand Down

0 comments on commit a0c4fbf

Please sign in to comment.