From a5877923b84d6f67883ea4c76413aa8ead12496a Mon Sep 17 00:00:00 2001 From: Alex ORLUC <alex.orluc@maarch.org> Date: Mon, 3 Feb 2020 17:04:47 +0100 Subject: [PATCH] fix modal --- .../administration/contact/modal/contact-modal.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frontend/app/administration/contact/modal/contact-modal.component.ts b/src/frontend/app/administration/contact/modal/contact-modal.component.ts index f1e68e7c77a..615f71538b7 100644 --- a/src/frontend/app/administration/contact/modal/contact-modal.component.ts +++ b/src/frontend/app/administration/contact/modal/contact-modal.component.ts @@ -41,6 +41,9 @@ export class ContactModalComponent { } else { this.creationMode = true; this.mode = 'update'; + if (this.mode === 'update') { + $j('.contact-modal-container').css({'height' : '90vh'}); + } if (this.headerService.getLastLoadedFile() !== null) { this.drawer.toggle(); setTimeout(() => { -- GitLab