This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-02-03 17:52:06 +07:00
parent f40273bf88
commit 8aba3faf9b
2 changed files with 2 additions and 2 deletions

View file

@ -188,7 +188,7 @@ function onSubmit() {
async () => {
const body = {
year: year.value == 0 ? null : year.value?.toString(),
period: planData.period,
period: planData.period ? planData.period : null,
includingName: planData.includingName,
target: planData.target,
unit: planData.unit,

View file

@ -53,7 +53,7 @@ async function fecthAssign(id: string) {
// messageError($q, e);
})
.finally(() => {
probationStore.checkLoad && hideLoader();
hideLoader();
});
}