Fix error page when ends_on date is null

Closes #936

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-11-22 20:00:01 +01:00
parent a54b879c2d
commit d4dfba48d8
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ const SHORT_TIME_FORMAT_OPTIONS: DateTimeFormatOptions = {
function formatDateTimeString(
value: string,
timeZone: string | undefined = undefined,
timeZone: string | null | undefined = undefined,
showTime = true,
dateFormat = "long"
): string {
@ -68,7 +68,7 @@ function formatDateTimeString(
options = {
...options,
...(isLongFormat ? LONG_TIME_FORMAT_OPTIONS : SHORT_TIME_FORMAT_OPTIONS),
timeZone,
timeZone: timeZone || undefined,
};
}
const format = new Intl.DateTimeFormat(locale(), options);