From d6f53ad63cc3ffd1fe981312d7d3600fd60778d6 Mon Sep 17 00:00:00 2001 From: jtubau Date: Fri, 7 Mar 2025 13:24:57 +0100 Subject: [PATCH] fix: refs #8626 remove duplicate ref attribute from RouteList.vue --- src/pages/Route/RouteList.vue | 1 - test/cypress/integration/route/routeExtendedList.spec.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/Route/RouteList.vue b/src/pages/Route/RouteList.vue index 9e8ff1fa1..b99cb8227 100644 --- a/src/pages/Route/RouteList.vue +++ b/src/pages/Route/RouteList.vue @@ -160,7 +160,6 @@ const columns = computed(() => [ :data-key ref="tableRef" :columns="columns" - ref="tableRef" :right-search="false" redirect="route" :create="{ diff --git a/test/cypress/integration/route/routeExtendedList.spec.js b/test/cypress/integration/route/routeExtendedList.spec.js index da35066c3..237729107 100644 --- a/test/cypress/integration/route/routeExtendedList.spec.js +++ b/test/cypress/integration/route/routeExtendedList.spec.js @@ -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);