diff --git a/cypress/e2e/list/list.spec.ts b/cypress/e2e/list/list.spec.ts index f49c20394a..fc7f1b201d 100644 --- a/cypress/e2e/list/list.spec.ts +++ b/cypress/e2e/list/list.spec.ts @@ -52,7 +52,7 @@ describe('Lists', () => { cy.get('.list-title h1') .should('contain', 'First List') - cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-trigger') + cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .menu-list-dropdown-trigger') .click() cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-content') .contains('Edit') @@ -80,7 +80,7 @@ describe('Lists', () => { it('Should remove a list', () => { cy.visit(`/lists/${lists[0].id}`) - cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-trigger') + cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .menu-list-dropdown-trigger') .click() cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-content') .contains('Delete') diff --git a/src/components/home/navigation.vue b/src/components/home/navigation.vue index f20488b80f..de96ea4aa3 100644 --- a/src/components/home/navigation.vue +++ b/src/components/home/navigation.vue @@ -7,7 +7,7 @@