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'); },