Set timeout during loading to prevent a calendar from blocking the view
This commit is contained in:
parent
142b841397
commit
58597c8076
1 changed files with 4 additions and 0 deletions
|
@ -122,6 +122,10 @@
|
||||||
if (spinner) {
|
if (spinner) {
|
||||||
spinner.$set({ isLoading: b });
|
spinner.$set({ isLoading: b });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
spinner.$set({ isLoading: false });
|
||||||
|
}, 3000);
|
||||||
},
|
},
|
||||||
eventSources: [],
|
eventSources: [],
|
||||||
themeSystem: 'bootstrap5',
|
themeSystem: 'bootstrap5',
|
||||||
|
|
Loading…
Reference in a new issue