mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat(editor): Fix some UTM tags (no-changelog) (#7583)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
parent
24dfc95974
commit
c6049a2e97
|
@ -306,7 +306,7 @@ export default defineComponent({
|
||||||
|
|
||||||
if (url.hostname === DOCS_DOMAIN) {
|
if (url.hostname === DOCS_DOMAIN) {
|
||||||
url.searchParams.set('utm_source', 'n8n_app');
|
url.searchParams.set('utm_source', 'n8n_app');
|
||||||
url.searchParams.set('utm_medium', 'left_nav_menu');
|
url.searchParams.set('utm_medium', 'credential_settings');
|
||||||
url.searchParams.set('utm_campaign', 'create_new_credentials_modal');
|
url.searchParams.set('utm_campaign', 'create_new_credentials_modal');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -293,7 +293,7 @@ export default defineComponent({
|
||||||
label: this.$locale.baseText('mainSidebar.helpMenuItems.documentation'),
|
label: this.$locale.baseText('mainSidebar.helpMenuItems.documentation'),
|
||||||
type: 'link',
|
type: 'link',
|
||||||
properties: {
|
properties: {
|
||||||
href: 'https://docs.n8n.io',
|
href: 'https://docs.n8n.io?utm_source=n8n_app&utm_medium=app_sidebar',
|
||||||
newWindow: true,
|
newWindow: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -303,7 +303,7 @@ export default defineComponent({
|
||||||
label: this.$locale.baseText('mainSidebar.helpMenuItems.forum'),
|
label: this.$locale.baseText('mainSidebar.helpMenuItems.forum'),
|
||||||
type: 'link',
|
type: 'link',
|
||||||
properties: {
|
properties: {
|
||||||
href: 'https://community.n8n.io',
|
href: 'https://community.n8n.io?utm_source=n8n_app&utm_medium=app_sidebar',
|
||||||
newWindow: true,
|
newWindow: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue