diff --git a/src/pages/Item/ItemTypeList.vue b/src/pages/Item/ItemTypeList.vue index 2c1153016..13dd56a42 100644 --- a/src/pages/Item/ItemTypeList.vue +++ b/src/pages/Item/ItemTypeList.vue @@ -7,7 +7,6 @@ import FetchData from 'components/FetchData.vue'; const { t } = useI18n(); const tableRef = ref(); -const workerOptions = ref([]); const ItemCategoriesOptions = ref([]); const columns = computed(() => [ @@ -40,12 +39,12 @@ const columns = computed(() => [ create: true, component: 'select', attrs: { - options: workerOptions.value, - optionLabel: 'firstName', + url: 'Workers/search', + optionLabel: 'nickname', optionValue: 'id', }, - cardVisible: false, - visible: false, + cardVisible: true, + visible: true, }, { align: 'left', @@ -78,12 +77,6 @@ const columns = computed(() => [