fix: columns not show action

This commit is contained in:
Thanaphon Frappet 2025-01-08 17:17:12 +07:00
parent 3c31ff8f79
commit ff7d516519

View file

@ -59,10 +59,12 @@ const { state: customerFormState, currentFormData: customerFormData } =
const { currentMyBranch } = storeToRefs(userBranch);
const fieldSelectedOption = computed(() => {
return columnQuotation.map((v) => ({
label: v.label,
value: v.name,
}));
return columnQuotation
.filter((v) => v.name !== 'action')
.map((v) => ({
label: v.label,
value: v.name,
}));
});
const special = ref(false);
const branchId = ref('');