Production release January 2024 #29

Merged
konstantina.galouni merged 16 commits from develop into master 2024-02-01 20:07:59 +01:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 5a23f6437d - Show all commits

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) {