diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-05-19 19:48:47 +0200 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-05-19 19:48:47 +0200 |
commit | 8f22da6ebd539fa4a219ab4e6265e0d45e02d155 (patch) | |
tree | 3067fce5303c8a204e77c0d56c98c1aed881f3b9 /frontend/src/app/_modals/alert-dialog/alert-dialog.component.html | |
parent | 6aba6287a85492295ba5de0a0cc6501d492a3676 (diff) | |
parent | 1f21329593e94411cac7d5448c119ae746773922 (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.html')
-rw-r--r-- | frontend/src/app/_modals/alert-dialog/alert-dialog.component.html | 16 |
1 files changed, 8 insertions, 8 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 |