Skip to content

Commit

Permalink
fix(editor): Show docs link in credential modal when docs sidebar is …
Browse files Browse the repository at this point in the history
…hidden (#10750)
  • Loading branch information
elsmr authored Sep 10, 2024
1 parent 63548e6 commit 87333cb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,10 @@ watch(showOAuthSuccessBanner, (newValue, oldValue) => {
/>

<template v-if="credentialPermissions.update">
<n8n-notice v-if="documentationUrl && credentialProperties.length && !docs" theme="warning">
<n8n-notice
v-if="documentationUrl && credentialProperties.length && !showCredentialDocs"
theme="warning"
>
{{ $locale.baseText('credentialEdit.credentialConfig.needHelpFillingOutTheseFields') }}
<span class="ml-4xs">
<n8n-link :to="documentationUrl" size="small" bold @click="onDocumentationUrlClick">
Expand Down

0 comments on commit 87333cb

Please sign in to comment.