8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 28905063b2 - Show all commits

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>
@ -202,7 +202,7 @@ watchEffect(selectedRows);
@click="downloadPdf()"
:disable="!hasSelectedCards"
data-cy="InvoiceOutDownloadPdfBtn"
>
>
<QTooltip>{{ t('globals.downloadPdf') }}</QTooltip>
</QBtn>
</template>
@ -304,7 +304,7 @@ watchEffect(selectedRows);
!scope.opt
?.isActive
? t(
'inactive'
'inactive',
)
: ''
} `