From ef4dc1b49ef177d538b5a3c0b3effb6f3fc639da Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 10 Mar 2022 14:27:54 -0800 Subject: [PATCH] strip all delimiters --- src-ui/src/app/utils/ngb-date-parser-formatter.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src-ui/src/app/utils/ngb-date-parser-formatter.ts b/src-ui/src/app/utils/ngb-date-parser-formatter.ts index ae3ce0e5d..b78dbd190 100644 --- a/src-ui/src/app/utils/ngb-date-parser-formatter.ts +++ b/src-ui/src/app/utils/ngb-date-parser-formatter.ts @@ -35,16 +35,14 @@ export class LocalizedDateParserFormatter extends NgbDateParserFormatter { * have it expanded to 10.03.2022, in the case of the German format. * (All other formats are also supported) * - * It also replaces commas with the date separator. - * This allows quick entry of the date on the numpad. + * It also strips commas or periods before running formatting, + * which allows quick entry of the date on the numpad. */ private preformatDateInput(value: string): string { let inputFormat = this.getDateInputFormat() let dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0) - value = value.replace(/,/g, dateSeparator) - - if (value.includes(dateSeparator)) { return value } + value = value.replace(/[\/,\.-]/g, '') if (value.length == 4 && inputFormat.substring(0, 4) != 'yyyy') { return value.substring(0, 2)