From 7795baf9890a0149813f11756fbdb6969d6136fd Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Wed, 10 Mar 2021 18:15:23 +0100 Subject: [PATCH] change ISO date to always display 4 digit years #736 --- src-ui/src/app/pipes/custom-date.pipe.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/pipes/custom-date.pipe.ts b/src-ui/src/app/pipes/custom-date.pipe.ts index 6587c157a..34aaaf1b7 100644 --- a/src-ui/src/app/pipes/custom-date.pipe.ts +++ b/src-ui/src/app/pipes/custom-date.pipe.ts @@ -4,8 +4,8 @@ import { SettingsService, SETTINGS_KEYS } from '../services/settings.service'; const FORMAT_TO_ISO_FORMAT = { "longDate": "y-MM-dd", - "mediumDate": "yy-MM-dd", - "shortDate": "yy-MM-dd" + "mediumDate": "y-MM-dd", + "shortDate": "y-MM-dd" } @Pipe({