From 20a6c5e7b7704da2c677540299f7ed5ac90eff33 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 11 Mar 2022 00:52:32 -0800 Subject: [PATCH] more code cleanup --- src-ui/src/app/utils/ngb-date-parser-formatter.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 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 9d74afe39..e2a79fd0c 100644 --- a/src-ui/src/app/utils/ngb-date-parser-formatter.ts +++ b/src-ui/src/app/utils/ngb-date-parser-formatter.ts @@ -40,9 +40,9 @@ export class LocalizedDateParserFormatter extends NgbDateParserFormatter { * any parts of the string, e.g. allowing for 1/2/22, * which allows quick entry of the date on the numpad. */ - public preformatDateInput(value: string): string { - let inputFormat = this.getDateInputFormat() - let dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0) + private preformatDateInput(value: string): string { + const inputFormat = this.getDateInputFormat() + const dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0) if (this.separatorRegExp.test(value)) { // split on separator, pad & re-join without separator