diff --git a/packages/editor-ui/src/constants.ts b/packages/editor-ui/src/constants.ts index 54942c4eee..c91d713926 100644 --- a/packages/editor-ui/src/constants.ts +++ b/packages/editor-ui/src/constants.ts @@ -76,7 +76,8 @@ export const NPM_PACKAGE_DOCS_BASE_URL = 'https://www.npmjs.com/package/'; export const NPM_KEYWORD_SEARCH_URL = 'https://www.npmjs.com/search?q=keywords%3An8n-community-node-package'; export const N8N_QUEUE_MODE_DOCS_URL = `https://${DOCS_DOMAIN}/hosting/scaling/queue-mode/`; -export const COMMUNITY_NODES_INSTALLATION_DOCS_URL = `https://${DOCS_DOMAIN}/integrations/community-nodes/installation/`; +export const COMMUNITY_NODES_INSTALLATION_DOCS_URL = `https://${DOCS_DOMAIN}/integrations/community-nodes/installation/gui-install/`; +export const COMMUNITY_NODES_MANUAL_INSTALLATION_DOCS_URL = `https://${DOCS_DOMAIN}/integrations/community-nodes/installation/manual-install/`; export const COMMUNITY_NODES_NPM_INSTALLATION_URL = 'https://docs.npmjs.com/downloading-and-installing-node-js-and-npm'; export const COMMUNITY_NODES_RISKS_DOCS_URL = `https://${DOCS_DOMAIN}/integrations/community-nodes/risks/`; diff --git a/packages/editor-ui/src/views/SettingsCommunityNodesView.vue b/packages/editor-ui/src/views/SettingsCommunityNodesView.vue index ea94c52bb9..e11ca282ee 100644 --- a/packages/editor-ui/src/views/SettingsCommunityNodesView.vue +++ b/packages/editor-ui/src/views/SettingsCommunityNodesView.vue @@ -55,6 +55,7 @@ import { COMMUNITY_PACKAGE_INSTALL_MODAL_KEY, COMMUNITY_NODES_INSTALLATION_DOCS_URL, + COMMUNITY_NODES_MANUAL_INSTALLATION_DOCS_URL, COMMUNITY_NODES_NPM_INSTALLATION_URL, } from '@/constants'; import CommunityPackageCard from '@/components/CommunityPackageCard.vue'; @@ -190,7 +191,7 @@ export default defineComponent({ if (this.settingsStore.isQueueModeEnabled) { return { calloutText: this.$locale.baseText('settings.communityNodes.queueMode.warning', { - interpolate: { docURL: COMMUNITY_NODES_INSTALLATION_DOCS_URL }, + interpolate: { docURL: COMMUNITY_NODES_MANUAL_INSTALLATION_DOCS_URL }, }), calloutTheme: 'warning', hideButton: true,