mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix bug
This commit is contained in:
parent
d4acba8835
commit
ab840e7bb2
|
@ -182,7 +182,7 @@ export default mixins(
|
|||
return this.nodeType.documentationUrl;
|
||||
}
|
||||
|
||||
if (this.documentationUrl || (this.nodeType.name && this.nodeType.name === 'n8n-nodes-base')) {
|
||||
if (this.nodeType.documentationUrl || (this.nodeType.name && this.nodeType.name === 'n8n-nodes-base')) {
|
||||
return 'https://docs.n8n.io/nodes/' + (this.nodeType.documentationUrl || this.nodeType.name) + '?utm_source=n8n_app&utm_medium=node_settings_modal-credential_link&utm_campaign=' + this.nodeType.name;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue