mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(editor): Show docs link in credential modal when docs sidebar is hidden (#10750)
This commit is contained in:
parent
63548e6ead
commit
87333cbefe
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue