From 4a2828a2f367d24c1c35ac1679b71a4b3cff67af Mon Sep 17 00:00:00 2001 From: Subhash Chandra Date: Fri, 27 Mar 2020 17:32:13 +0530 Subject: [PATCH] Fix oauth2 connect UI --- packages/editor-ui/src/components/CredentialsInput.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/editor-ui/src/components/CredentialsInput.vue b/packages/editor-ui/src/components/CredentialsInput.vue index 8a846b4055..5b5e5492ff 100644 --- a/packages/editor-ui/src/components/CredentialsInput.vue +++ b/packages/editor-ui/src/components/CredentialsInput.vue @@ -194,6 +194,9 @@ export default mixins( return this.credentialDataTemp; }, isOAuthType (): boolean { + if (this.credentialTypeData.name === 'oAuth2Api') { + return true; + } const types = this.parentTypes(this.credentialTypeData.name); return types.includes('oAuth2Api'); },