From 92b661d1a0ebdaba9dde85257027cdf63bffda36 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Sat, 11 Sep 2021 12:46:24 +0200 Subject: [PATCH] :zap: Fix order and set valid default value --- packages/nodes-base/nodes/Wekan/CardDescription.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/nodes-base/nodes/Wekan/CardDescription.ts b/packages/nodes-base/nodes/Wekan/CardDescription.ts index 43c19b911c..bc0ada4aa6 100644 --- a/packages/nodes-base/nodes/Wekan/CardDescription.ts +++ b/packages/nodes-base/nodes/Wekan/CardDescription.ts @@ -795,6 +795,13 @@ export const cardFields = [ default: '', description: 'The new received at field of the card.', }, + { + displayName: 'Sort', + name: 'sort', + type: 'number', + default: 0, + description: 'The internally used sort value of a card.', + }, { displayName: 'Spent Time', name: 'spentTime', @@ -832,13 +839,6 @@ export const cardFields = [ default: '', description: 'The new title of the card.', }, - { - displayName: 'Sort', - name: 'sort', - type: 'number', - default: '', - description: 'The internally used sort value of a card.', - }, ], }, ] as INodeProperties[];