7691-testToMaster #537

Merged
alexm merged 395 commits from 7691-testToMaster into master 2024-07-09 05:39:56 +00:00
1 changed files with 15 additions and 12 deletions
Showing only changes of commit 20ae555e14 - Show all commits

View File

@ -84,6 +84,7 @@ watch(
const isLoading = ref(false);
async function search() {
try {
store.filter.where = {};
isLoading.value = true;
const params = { ...userParams.value };
@ -95,9 +96,11 @@ async function search() {
if (!props.showAll && !Object.values(params).length) store.data = [];
isLoading.value = false;
emit('search');
if (props.redirect) navigate(store.data, {});
} finally {
isLoading.value = false;
}
}
async function reload() {