diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-19 17:21:04 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-19 17:21:04 +0200 |
commit | 03b26d14c16a4551a48fe0d3f5993bec84fa36b1 (patch) | |
tree | 92382c46f75f5d54d763ca0674ed7f5095c703fe /frontend/src/app/_modals/alert-dialog | |
parent | dce16507a0e8219f1bb04a2ec9a0afad521fac47 (diff) | |
parent | 529394dd526811e059dfb5f8f76597ffd90b2fea (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
# Conflicts:
# backend/api/api/appsettings.json
Diffstat (limited to 'frontend/src/app/_modals/alert-dialog')
-rw-r--r-- | frontend/src/app/_modals/alert-dialog/alert-dialog.component.html | 16 | ||||
-rw-r--r-- | frontend/src/app/_modals/alert-dialog/alert-dialog.component.ts | 6 |
2 files changed, 12 insertions, 10 deletions
diff --git a/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html index 2d7e4d86..84793260 100644 --- a/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html +++ b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html @@ -1,9 +1,9 @@ - - - <h2 mat-dialog-title >{{data.title}}</h2> - <div mat-dialog-content class="mt-4 text-offwhite" > - {{data.message}} - </div> - <div mat-dialog-actions class="d-flex justify-content-center mt-4"> +<h2 mat-dialog-title>{{data.title}}</h2> +<div mat-dialog-content class="mt-4 text-offwhite"> + <form (keydown)="withEnterKey($event)"> + {{data.message}} + </form> +</div> +<div mat-dialog-actions class="d-flex justify-content-center mt-4"> <button mat-raised-button cdkFocusInitial (click)="onOkClick()" color="basic">OK</button> - </div>
\ No newline at end of file +</div>
\ No newline at end of file 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(); } - - } |