Skip to content
Snippets Groups Projects
Commit 546bad51 authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FIX #23556 TIME 0:10 fix init tinyMce

parent 164e79ab
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,9 @@ export class CustomizationComponent implements OnInit, OnDestroy {
async ngOnInit(){
await this.getCustomizationInfos();
await this.getWatermark();
setTimeout(() => {
this.initMce();
}, 0);
this.loading = false;
}
......@@ -54,9 +57,6 @@ export class CustomizationComponent implements OnInit, OnDestroy {
tap((data: any) => {
this.applicationUrl = data.applicationUrl;
this.loginMessage = data.loginMessage;
setTimeout(() => {
this.initMce();
}, 100);
resolve(true);
}),
catchError((err: any) => {
......
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