diff --git a/packages/nodes-base/nodes/Wekan/BoardDescription.ts b/packages/nodes-base/nodes/Wekan/BoardDescription.ts index d3807638080..29f45f5e064 100644 --- a/packages/nodes-base/nodes/Wekan/BoardDescription.ts +++ b/packages/nodes-base/nodes/Wekan/BoardDescription.ts @@ -66,7 +66,7 @@ export const boardFields = [ ], }, }, - description: 'The title of the board', + description: 'The title of the board.', }, { displayName: 'Owner', @@ -87,7 +87,7 @@ export const boardFields = [ ], }, }, - description: 'The user ID in Wekan', + description: 'The user ID in Wekan.', }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts b/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts index ba5d2abf0aa..a9449bb16e7 100644 --- a/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts +++ b/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts @@ -260,10 +260,7 @@ export const cardCommentFields = [ { displayName: 'Board ID', name: 'boardId', - type: 'options', - typeOptions: { - loadOptionsMethod: 'getBoards', - }, + type: 'string', default: '', required: true, displayOptions: { @@ -330,14 +327,7 @@ export const cardCommentFields = [ { displayName: 'Comment ID', name: 'commentId', - type: 'options', - typeOptions: { - loadOptionsMethod: 'getComments', - loadOptionsDependsOn: [ - 'boardId', - 'cardId', - ], - }, + type: 'string', default: '', required: true, displayOptions: { diff --git a/packages/nodes-base/nodes/Wekan/CardDescription.ts b/packages/nodes-base/nodes/Wekan/CardDescription.ts index 6b38270b102..154eabd133d 100644 --- a/packages/nodes-base/nodes/Wekan/CardDescription.ts +++ b/packages/nodes-base/nodes/Wekan/CardDescription.ts @@ -115,7 +115,7 @@ export const cardFields = [ ], }, }, - description: 'The title of the card', + description: 'The title of the card.', }, { displayName: 'Swimlane ID', @@ -139,7 +139,7 @@ export const cardFields = [ ], }, }, - description: 'The swimlane ID of the new card', + description: 'The swimlane ID of the new card.', }, { displayName: 'Author ID', @@ -160,7 +160,7 @@ export const cardFields = [ ], }, }, - description: 'The author ID', + description: 'The author ID.', }, { displayName: 'Additional Fields', @@ -334,14 +334,7 @@ export const cardFields = [ { displayName: 'Card ID', name: 'cardId', - type: 'options', - typeOptions: { - loadOptionsMethod: 'getCards', - loadOptionsDependsOn: [ - 'boardId', - 'listId', - ], - }, + type: 'string', default: '', required: true, displayOptions: { diff --git a/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts b/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts index 7f9722b5e52..6af95955c06 100644 --- a/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts +++ b/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts @@ -156,7 +156,7 @@ export const checklistFields = [ }, }, default: [], - description: 'Items to be added to the checklist', + description: 'Items to be added to the checklist.', }, // ---------------------------------- diff --git a/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts b/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts index 9c49cd659cc..8eb91db3e80 100644 --- a/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts +++ b/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts @@ -242,14 +242,7 @@ export const checklistItemFields = [ { displayName: 'Checklist ID', name: 'checklistId', - type: 'options', - typeOptions: { - loadOptionsMethod: 'getChecklists', - loadOptionsDependsOn: [ - 'boardId', - 'cardId', - ], - }, + type: 'string', default: '', required: true, displayOptions: { diff --git a/packages/nodes-base/nodes/Wekan/ListDescription.ts b/packages/nodes-base/nodes/Wekan/ListDescription.ts index 23b42bf6a2a..aad9da180b3 100644 --- a/packages/nodes-base/nodes/Wekan/ListDescription.ts +++ b/packages/nodes-base/nodes/Wekan/ListDescription.ts @@ -86,7 +86,7 @@ export const listFields = [ ], }, }, - description: 'The title of the list' + description: 'The title of the list.' }, // ---------------------------------- @@ -165,13 +165,7 @@ export const listFields = [ { displayName: 'List ID', name: 'listId', - type: 'options', - typeOptions: { - loadOptionsMethod: 'getLists', - loadOptionsDependsOn: [ - 'boardId', - ], - }, + type: 'string', default: '', required: true, displayOptions: { @@ -209,7 +203,7 @@ export const listFields = [ ], }, }, - description: 'ID of the board where the lists are in' + description: 'ID of the board where the lists are in.' }, { displayName: 'Return All', diff --git a/packages/nodes-base/nodes/Wekan/Wekan.node.ts b/packages/nodes-base/nodes/Wekan/Wekan.node.ts index 85ba4faa96b..168ed65936d 100644 --- a/packages/nodes-base/nodes/Wekan/Wekan.node.ts +++ b/packages/nodes-base/nodes/Wekan/Wekan.node.ts @@ -528,7 +528,7 @@ export class Wekan implements INodeType { body.title = this.getNodeParameter('title', i) as string; - body.items = this.getNodeParameter('items', i) as string[]; + body.items = this.getNodeParameter('items', i) as string[]; } else if (operation === 'delete') { // ---------------------------------- diff --git a/packages/nodes-base/nodes/Wekan/wekan.png b/packages/nodes-base/nodes/Wekan/wekan.png index a4fc946c3fb..8849da129cd 100644 Binary files a/packages/nodes-base/nodes/Wekan/wekan.png and b/packages/nodes-base/nodes/Wekan/wekan.png differ