fix(editor): Issue showing Auth2 callback section when all properties are overriden (#8999)

This commit is contained in:
Ricardo Espinoza
2024-04-04 05:30:37 -04:00
committed by GitHub
parent bc6575afbb
commit dff8f7ac94
3 changed files with 51 additions and 2 deletions

View File

@@ -78,7 +78,7 @@
/>
<CopyInput
v-if="isOAuthType && credentialProperties.length"
v-if="isOAuthType && !allOAuth2BasePropertiesOverridden"
:label="$locale.baseText('credentialEdit.credentialConfig.oAuthRedirectUrl')"
:value="oAuthCallbackUrl"
:copy-button-text="$locale.baseText('credentialEdit.credentialConfig.clickToCopy')"
@@ -204,6 +204,9 @@ export default defineComponent({
isOAuthType: {
type: Boolean,
},
allOAuth2BasePropertiesOverridden: {
type: Boolean,
},
isOAuthConnected: {
type: Boolean,
},