fix: refs #8626 remove duplicate ref attribute from RouteList.vue
gitea/salix-front/pipeline/pr-dev Build queued... Details

This commit is contained in:
Jose Antonio Tubau 2025-03-07 13:24:57 +01:00
parent a9f8bf3f9c
commit d6f53ad63c
2 changed files with 2 additions and 3 deletions

View File

@ -160,7 +160,6 @@ const columns = computed(() => [
:data-key
ref="tableRef"
:columns="columns"
ref="tableRef"
:right-search="false"
redirect="route"
:create="{

View File

@ -120,7 +120,7 @@ describe('Route extended list', () => {
it('Should clone selected route', () => {
cy.get(selectors.lastRowSelectCheckBox).click();
cy.get(selectors.cloneBtn).click();
cy.dataCy('route.Starting date_inputDate').type('10-05-2001').click();
cy.dataCy('route.Starting date_inputDate').type('10-05-2001');
cy.get('.q-card__actions > .q-btn--standard > .q-btn__content').click();
cy.validateContent(selectors.date, '05/10/2001');
});
@ -153,7 +153,7 @@ describe('Route extended list', () => {
});
it('Should add ticket to route', () => {
cy.dataCy('tableAction-0').last().click();
cy.dataCy('tableAction-0').first().click();
cy.get(selectors.firstTicketsRowSelectCheckBox).click();
cy.get('.q-card__actions > .q-btn--standard > .q-btn__content').click();
cy.checkNotification(dataSaved);