Merge branch 'nice_dev' into develop

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-14 11:00:46 +07:00
commit c4d42eb66f

View file

@ -190,8 +190,9 @@ const sendToDirector = async () => {
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
.finally(async () => {
await hideLoader();
await fecthStat(round.value);
});
});
};
@ -257,8 +258,9 @@ const directorApproved = async () => {
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
.finally(async () => {
await hideLoader();
await fecthStat(round.value);
});
},
"ยืนยันการอนุมัติ",
@ -288,8 +290,9 @@ const requestSendNote = async () => {
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
.finally(async () => {
await hideLoader();
await fecthStat(round.value);
});
});
};