fixing load kpi
This commit is contained in:
parent
79a6e52973
commit
89858fcb8f
1 changed files with 6 additions and 6 deletions
|
|
@ -142,12 +142,12 @@ function getCriteria() {
|
|||
});
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
setTimeout(() => {
|
||||
getCriteria();
|
||||
fetchListPlanned();
|
||||
fetchListRole();
|
||||
fetchAssigned();
|
||||
onMounted(async() => {
|
||||
setTimeout(async() => {
|
||||
await getCriteria();
|
||||
await fetchListPlanned();
|
||||
await fetchListRole();
|
||||
await fetchAssigned();
|
||||
hideLoader();
|
||||
}, 1000);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue