From 74033a7bdf1532e737f35aa450d0d7dfd1ae5cb8 Mon Sep 17 00:00:00 2001 From: pablone Date: Wed, 2 Apr 2025 11:51:03 +0200 Subject: [PATCH 1/2] refactor: improve layout and styling in ExtraCommunity.vue --- src/pages/Travel/ExtraCommunity.vue | 32 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/src/pages/Travel/ExtraCommunity.vue b/src/pages/Travel/ExtraCommunity.vue index ec898719d..849eeee5b 100644 --- a/src/pages/Travel/ExtraCommunity.vue +++ b/src/pages/Travel/ExtraCommunity.vue @@ -505,7 +505,6 @@ watch(route, () => { :props="props" @click="stopEventPropagation($event, col)" :style="col.style" - style="padding-left: 5px" > { {{ entry.id }} - - {{ entry.supplierName }} - - - - - + +
+ + {{ entry.supplierName }} + + + +
{{ toCurrency(entry.invoiceAmount) }} @@ -639,9 +639,7 @@ watch(route, () => { &:nth-child(1) { max-width: 65px; } - &:nth-child(4) { - padding: 0; - } + padding: 0 5px 0; } thead > tr > th { padding: 3px; -- 2.40.1 From 6debb64b2bb00c62b97177aa359a8f84080bdca5 Mon Sep 17 00:00:00 2001 From: pablone Date: Wed, 2 Apr 2025 12:52:51 +0200 Subject: [PATCH 2/2] test: skip VnShortcuts and WorkerList test suites --- test/cypress/integration/vnComponent/VnShortcut.spec.js | 4 ++-- test/cypress/integration/worker/workerList.spec.js | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/test/cypress/integration/vnComponent/VnShortcut.spec.js b/test/cypress/integration/vnComponent/VnShortcut.spec.js index fa05e2e3d..cc5cacbe4 100644 --- a/test/cypress/integration/vnComponent/VnShortcut.spec.js +++ b/test/cypress/integration/vnComponent/VnShortcut.spec.js @@ -1,6 +1,6 @@ /// - -describe('VnShortcuts', () => { +// https://redmine.verdnatura.es/issues/8848 +describe.skip('VnShortcuts', () => { const modules = { item: 'a', customer: 'c', diff --git a/test/cypress/integration/worker/workerList.spec.js b/test/cypress/integration/worker/workerList.spec.js index 0a45441c1..d964c3dc8 100644 --- a/test/cypress/integration/worker/workerList.spec.js +++ b/test/cypress/integration/worker/workerList.spec.js @@ -1,4 +1,5 @@ -describe('WorkerList', () => { +// https://redmine.verdnatura.es/issues/8848 +describe.skip('WorkerList', () => { const inputName = '.q-drawer .q-form input[aria-label="First Name"]'; const searchBtn = '.q-drawer button:nth-child(3)'; const descriptorTitle = '.descriptor .title span'; @@ -13,7 +14,7 @@ describe('WorkerList', () => { cy.intercept('GET', /\/api\/Workers\/summary+/).as('worker'); cy.get(searchBtn).click(); cy.wait('@worker').then(() => - cy.get(descriptorTitle).should('include.text', 'Jessica') + cy.get(descriptorTitle).should('include.text', 'Jessica'), ); }); }); -- 2.40.1