aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts
diff options
context:
space:
mode:
authorOgnjen Cirkovic <ciraboxkg@gmail.com>2022-05-19 13:09:02 +0200
committerOgnjen Cirkovic <ciraboxkg@gmail.com>2022-05-19 13:09:02 +0200
commit984e969e74a6e21c520bd20e59b077aa0b8f5e06 (patch)
tree9a49d0d16f734a152814c7e2dc971c3f6a9452ad /frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts
parentc2aa2abb6c4c6fa65d16812e7858f6ddf8034384 (diff)
parent5dab3cad1e3f4d0c97525f77db90ca11cd8a4eb9 (diff)
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into Redesign
Diffstat (limited to 'frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts')
-rw-r--r--frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts
index e15f3c6f..7558b527 100644
--- a/frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts
+++ b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts
@@ -20,9 +20,11 @@ export class AlertDialogComponent {
//public dialog: MatDialog
) {}
+ withEnterKey(keyboardEvent: KeyboardEvent) {
+ if (keyboardEvent.code == "Enter" || keyboardEvent.code == "NumpadEnter")
+ this.onOkClick();
+ }
onOkClick(): void {
this.dialogRef.close();
}
-
-
}