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 ed5ea9a9f0daf6138c22483d5b98ee81e9e14f4c..ae960000985a843291cb1355ec4f681b102cc080 100644 --- a/src/frontend/app/administration/contact/modal/contact-modal.component.ts +++ b/src/frontend/app/administration/contact/modal/contact-modal.component.ts @@ -38,6 +38,12 @@ export class ContactModalComponent { } else { this.creationMode = true; this.mode = 'update'; + if (this.headerService.getLastLoadedFile() !== null) { + this.drawer.toggle(); + setTimeout(() => { + this.loadedDocument = true; + }, 200); + } } this.canUpdate = this.privilegeService.hasCurrentUserPrivilege('update_contacts'); }