fix
This commit is contained in:
parent
841b023827
commit
b32a96cfda
2 changed files with 5 additions and 3 deletions
|
|
@ -162,6 +162,7 @@ async function getData() {
|
|||
rows.value = data;
|
||||
rowsData.value = data;
|
||||
filters.value = data;
|
||||
onSearch();
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue