From 9250f4e76b5f7fece612c98e97a2900933128dbe Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 2 Nov 2021 21:11:14 +0100 Subject: [PATCH] fix: column active test --- cypress/integration/list/list.spec.js | 6 +++--- src/components/list/partials/filter-popup.vue | 4 ++++ src/views/list/views/Table.vue | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/cypress/integration/list/list.spec.js b/cypress/integration/list/list.spec.js index b17877bbe..864b533b3 100644 --- a/cypress/integration/list/list.spec.js +++ b/cypress/integration/list/list.spec.js @@ -212,17 +212,17 @@ describe('Lists', () => { .should('contain', tasks[0].title) }) - it.only('Should have working column switches', () => { + it('Should have working column switches', () => { TaskFactory.create(1) cy.visit('/lists/1/table') cy.get('.table-view .filter-container .items .button') .contains('Columns') .click() - cy.get('.table-view .filter-container .card .card-content .fancycheckbox .check') + cy.get('.table-view .filter-container .card.columns-filter .card-content .fancycheckbox .check') .contains('Priority') .click() - cy.get('.table-view .filter-container .card .card-content .fancycheckbox .check') + cy.get('.table-view .filter-container .card.columns-filter .card-content .fancycheckbox .check') .contains('Done') .click() diff --git a/src/components/list/partials/filter-popup.vue b/src/components/list/partials/filter-popup.vue index a9ed22669..8d0381119 100644 --- a/src/components/list/partials/filter-popup.vue +++ b/src/components/list/partials/filter-popup.vue @@ -107,10 +107,14 @@ export default { overflow: hidden; position: absolute; top: 2rem; + margin: 0 !important; + border-width: 0 !important; &.is-open { opacity: 1; height: auto; + margin: 1rem 0 !important; + border-width: 1px !important; } } diff --git a/src/views/list/views/Table.vue b/src/views/list/views/Table.vue index eda52509c..56fa57e49 100644 --- a/src/views/list/views/Table.vue +++ b/src/views/list/views/Table.vue @@ -23,7 +23,7 @@ /> - + # {{ $t('task.attributes.done') }}