[develop | DONE | FIXED]: project.component.ts: In method "closeLoading()" added setTimeout of 300ms - too fast open and close of the loading modal and it couldn't close eventually.

This commit is contained in:
Konstantina Galouni 2024-01-29 19:53:11 +02:00
parent fa216cbc07
commit 5a23f6437d
1 changed files with 5 additions and 3 deletions

View File

@ -897,9 +897,11 @@ export class ProjectComponent {
}
private closeLoading() {
if (this.loading) {
this.loading.close();
}
setTimeout(() => {
if (this.loading) {
this.loading.close();
}
}, 300)
}
private setMessageLoading(message: string) {