From 4773d0bb7f03dd739340ad6dfddf728df35e1297 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 11 Mar 2022 01:03:43 -0800 Subject: [PATCH] semicolons --- .../components/common/date-dropdown/date-dropdown.component.ts | 2 +- src-ui/src/app/components/common/input/date/date.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts index 81844382c..fecac367b 100644 --- a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts +++ b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts @@ -123,7 +123,7 @@ export class DateDropdownComponent implements OnInit, OnDestroy { // prevent chars other than numbers and separators onKeyPress(event: KeyboardEvent) { if (!/[0-9,\.\/-]+/.test(event.key)) { - event.preventDefault(); + event.preventDefault() } } } diff --git a/src-ui/src/app/components/common/input/date/date.component.ts b/src-ui/src/app/components/common/input/date/date.component.ts index 061689d1a..709f96e75 100644 --- a/src-ui/src/app/components/common/input/date/date.component.ts +++ b/src-ui/src/app/components/common/input/date/date.component.ts @@ -30,7 +30,7 @@ export class DateComponent extends AbstractInputComponent implements OnI // prevent chars other than numbers and separators onKeyPress(event: KeyboardEvent) { if (!/[0-9,\.\/-]+/.test(event.key)) { - event.preventDefault(); + event.preventDefault() } } }