fix(console): broken layout and colors in keyboard shortcuts modal (#7276)

* fix(console): broken styles in keyboards shortcut modal

* fix(e2e): increase timeout for org delete test

* fix: ugly space in button between top border and background color when hovered
This commit is contained in:
Miguel Cabrerizo
2024-02-14 16:45:41 +01:00
committed by GitHub
parent e81a24b92d
commit 518c8f486e
3 changed files with 62 additions and 50 deletions

View File

@@ -27,7 +27,7 @@ describe('organizations', () => {
cy.visit(orgsPath);
cy.contains('tr', newOrg).click();
cy.get('[data-e2e="actions"]').click();
cy.get('[data-e2e="delete"]', { timeout: 1000 }).should('be.visible').click();
cy.get('[data-e2e="delete"]', { timeout: 3000 }).should('be.visible').click();
cy.get('[data-e2e="confirm-dialog-input"]').focus().clear().type(newOrg);
cy.get('[data-e2e="confirm-dialog-button"]').click();
cy.shouldConfirmSuccess();