This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-02-24 17:39:26 +07:00
parent 841b023827
commit b32a96cfda
2 changed files with 5 additions and 3 deletions

View file

@ -162,6 +162,7 @@ async function getData() {
rows.value = data;
rowsData.value = data;
filters.value = data;
onSearch();
})
.catch((e) => {
messageError($q, e);

View file

@ -162,13 +162,14 @@ async function getData() {
rows.value = data;
rowsData.value = data;
filters.value = data;
hideLoader();
onSearch();
})
.catch((e) => {
messageError($q, e);
hideLoader();
})
.finally(() => {});
.finally(() => {
hideLoader();
});
}
async function clickDelete(id: string) {