Merge branch 'dev' of https: refs #8078//gitea.verdnatura.es/verdnatura/salix-front into 8078-enableMultiSelection
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-10-29 09:27:30 +01:00
commit 71420da586
2 changed files with 3 additions and 6 deletions

View File

@ -121,7 +121,7 @@ const entriesTableColumns = computed(() => [
:loading="isLoading"
@click="
openReport(
`Entries/${props.row.id}/buy-label`
`Entries/${props.row.id}/buy-label-supplier`
)
"
unelevated

View File

@ -13,7 +13,7 @@ describe('Logout', () => {
});
describe('not user', () => {
beforeEach(() => {
cy.intercept('GET', '**DefaultViewConfigs**', {
cy.intercept('GET', '**StarredModules**', {
statusCode: 401,
body: {
error: {
@ -29,10 +29,7 @@ describe('Logout', () => {
it('when token not exists', () => {
cy.get('.q-list > [href="#/item"]').click();
cy.get('.q-notification__message').should(
'have.text',
'Authorization Required'
);
cy.checkNotification('Authorization Required');
});
});
});