7489-testToMaster #408

Merged
alexm merged 292 commits from 7489-testToMaster into master 2024-05-28 05:33:17 +00:00
2 changed files with 1 additions and 7 deletions
Showing only changes of commit 6c374061d0 - Show all commits

View File

@ -17,7 +17,6 @@ const route = useRoute();
const ZoneWarehouseFormData = reactive({
warehouseFk: null,
});
const closeButton = ref(null);
const warehousesOptions = ref([]);
@ -28,11 +27,6 @@ const createZoneWarehouse = () => {
} catch (error) {
console.error(error);
}
closeForm();
};
const closeForm = () => {
if (closeButton.value) closeButton.value.click();
};
</script>

View File

@ -56,7 +56,7 @@ watch(
}
);
const fetchWarehouses = async () => await paginateRef.value.fetch();
const fetchWarehouses = () => paginateRef.value.fetch();
</script>
<template>