[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:
parent
fa216cbc07
commit
5a23f6437d
|
@ -897,9 +897,11 @@ export class ProjectComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
private closeLoading() {
|
private closeLoading() {
|
||||||
if (this.loading) {
|
setTimeout(() => {
|
||||||
this.loading.close();
|
if (this.loading) {
|
||||||
}
|
this.loading.close();
|
||||||
|
}
|
||||||
|
}, 300)
|
||||||
}
|
}
|
||||||
|
|
||||||
private setMessageLoading(message: string) {
|
private setMessageLoading(message: string) {
|
||||||
|
|
Loading…
Reference in New Issue