Skip to content
Snippets Groups Projects
Verified Commit 918fda8f authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #12636 TIME 0:15 display document in contactCreation

parent 1d023497
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,12 @@ export class ContactModalComponent { ...@@ -38,6 +38,12 @@ export class ContactModalComponent {
} else { } else {
this.creationMode = true; this.creationMode = true;
this.mode = 'update'; this.mode = 'update';
if (this.headerService.getLastLoadedFile() !== null) {
this.drawer.toggle();
setTimeout(() => {
this.loadedDocument = true;
}, 200);
}
} }
this.canUpdate = this.privilegeService.hasCurrentUserPrivilege('update_contacts'); this.canUpdate = this.privilegeService.hasCurrentUserPrivilege('update_contacts');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment