fix: Fix broken links in nodes (#3716)

This commit is contained in:
Mutasem Aldmour
2022-07-14 22:05:11 +02:00
committed by GitHub
parent 56a7ad4070
commit c9b7b6d30f
398 changed files with 1637 additions and 1637 deletions

View File

@@ -92,7 +92,7 @@ export const dashboardFields: INodeProperties[] = [
name: 'folderId',
type: 'options',
default: '',
description: 'Folder to create the dashboard in - if the folder is unspecified, the dashboard will be saved to the General folder. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'Folder to create the dashboard in - if the folder is unspecified, the dashboard will be saved to the General folder. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
typeOptions: {
loadOptionsMethod: 'getFolders',
},
@@ -259,7 +259,7 @@ export const dashboardFields: INodeProperties[] = [
name: 'folderId',
type: 'options',
default: '',
description: 'Folder to move the dashboard into - if the folder is unspecified, the dashboard will be saved to the General folder. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'Folder to move the dashboard into - if the folder is unspecified, the dashboard will be saved to the General folder. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
typeOptions: {
loadOptionsMethod: 'getFolders',
},

View File

@@ -46,7 +46,7 @@ export const teamMemberFields: INodeProperties[] = [
{
displayName: 'User Name or ID',
name: 'userId',
description: 'User to add to a team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'User to add to a team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
type: 'options',
required: true,
default: '',
@@ -67,7 +67,7 @@ export const teamMemberFields: INodeProperties[] = [
{
displayName: 'Team Name or ID',
name: 'teamId',
description: 'Team to add the user to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'Team to add the user to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
type: 'options',
required: true,
default: '',
@@ -92,7 +92,7 @@ export const teamMemberFields: INodeProperties[] = [
{
displayName: 'User Name or ID',
name: 'memberId',
description: 'User to remove from the team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'User to remove from the team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
type: 'options',
required: true,
default: '',
@@ -113,7 +113,7 @@ export const teamMemberFields: INodeProperties[] = [
{
displayName: 'Team Name or ID',
name: 'teamId',
description: 'Team to remove the user from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'Team to remove the user from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
type: 'options',
required: true,
default: '',
@@ -138,7 +138,7 @@ export const teamMemberFields: INodeProperties[] = [
{
displayName: 'Team Name or ID',
name: 'teamId',
description: 'Team to retrieve all members from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
description: 'Team to retrieve all members from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
typeOptions: {
loadOptionsMethod: 'getTeams',
},