fixing load kpi

This commit is contained in:
Warunee Tamkoo 2024-05-03 08:53:55 +07:00
parent 79a6e52973
commit 89858fcb8f

View file

@ -142,12 +142,12 @@ function getCriteria() {
}); });
} }
onMounted(() => { onMounted(async() => {
setTimeout(() => { setTimeout(async() => {
getCriteria(); await getCriteria();
fetchListPlanned(); await fetchListPlanned();
fetchListRole(); await fetchListRole();
fetchAssigned(); await fetchAssigned();
hideLoader(); hideLoader();
}, 1000); }, 1000);
}); });