diff --git a/src/components/ItemsFilterPanel.vue b/src/components/ItemsFilterPanel.vue index be4d475b6..dc2a34435 100644 --- a/src/components/ItemsFilterPanel.vue +++ b/src/components/ItemsFilterPanel.vue @@ -31,7 +31,6 @@ const props = defineProps({ const route = useRoute(); const itemTypesOptions = ref([]); -const suppliersOptions = ref([]); const tagOptions = ref([]); const tagValues = ref([]); const categoryList = ref(null); @@ -40,13 +39,13 @@ const selectedTypeFk = ref(getParamWhere(route.query.table, 'typeFk', false)); const selectedCategory = computed(() => { return (categoryList.value || []).find( - (category) => category?.id === selectedCategoryFk.value + (category) => category?.id === selectedCategoryFk.value, ); }); const selectedType = computed(() => { return (itemTypesOptions.value || []).find( - (type) => type?.id === selectedTypeFk.value + (type) => type?.id === selectedTypeFk.value, ); }); @@ -134,13 +133,6 @@ const setCategoryList = (data) => {