Set timeout during loading to prevent a calendar from blocking the view

This commit is contained in:
Tom Hubrecht 2022-10-28 13:34:43 +02:00
parent 142b841397
commit 58597c8076

View file

@ -122,6 +122,10 @@
if (spinner) {
spinner.$set({ isLoading: b });
}
setTimeout(() => {
spinner.$set({ isLoading: false });
}, 3000);
},
eventSources: [],
themeSystem: 'bootstrap5',