0
0
Fork 0

fix: refs #8316 filter

This commit is contained in:
Alex Moreno 2025-01-24 10:34:01 +01:00
parent 661f7bacd6
commit 28905063b2
1 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ const dataKey = 'InvoiceOutList';
async function fetchClientAddress(id) {
const { data } = await axios.get(
`Clients/${id}/addresses?filter[order]=isActive DESC`
`Clients/${id}/addresses?filter[order]=isActive DESC`,
);
addressOptions.value = data;
}
@ -190,7 +190,7 @@ watchEffect(selectedRows);
order: ['id DESC'],
}"
>
<template #rightMenu>
<template #advanced-menu>
<InvoiceOutFilter data-key="InvoiceOutList" />
</template>
<template #body>
@ -304,7 +304,7 @@ watchEffect(selectedRows);
!scope.opt
?.isActive
? t(
'inactive'
'inactive',
)
: ''
} `