diff --git a/cypress/e2e/2-credentials.cy.ts b/cypress/e2e/2-credentials.cy.ts index 17d51ebb0ded4..623813f6e611e 100644 --- a/cypress/e2e/2-credentials.cy.ts +++ b/cypress/e2e/2-credentials.cy.ts @@ -114,7 +114,7 @@ describe('Credentials', () => { workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_GOOGLE_ACCOUNT_NAME); }); - it('should show multiple credential types in the same dropdown', () => { + it.only('should show multiple credential types in the same dropdown', () => { workflowPage.actions.visit(); workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME); workflowPage.actions.addNodeToCanvas(GMAIL_NODE_NAME); diff --git a/packages/editor-ui/src/components/CredentialEdit/CredentialEdit.vue b/packages/editor-ui/src/components/CredentialEdit/CredentialEdit.vue index 06054b323244c..3e290a7315acb 100644 --- a/packages/editor-ui/src/components/CredentialEdit/CredentialEdit.vue +++ b/packages/editor-ui/src/components/CredentialEdit/CredentialEdit.vue @@ -528,7 +528,7 @@ export default mixins(nodeHelpers, externalHooks).extend({ ), }, ); - keepEditing = confirmAction === MODAL_CONFIRM; + keepEditing = confirmAction !== MODAL_CONFIRM; } if (!keepEditing) {