From 13c5eef8661dece300955cb3ef731050261b01c6 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Sun, 26 Jan 2020 19:50:17 -0800 Subject: [PATCH] :zap: Add minValue on ClickUp-Node priority parameter --- packages/nodes-base/nodes/ClickUp/TaskDescription.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/nodes-base/nodes/ClickUp/TaskDescription.ts b/packages/nodes-base/nodes/ClickUp/TaskDescription.ts index c51baa495..62b8c570f 100644 --- a/packages/nodes-base/nodes/ClickUp/TaskDescription.ts +++ b/packages/nodes-base/nodes/ClickUp/TaskDescription.ts @@ -274,6 +274,7 @@ export const taskFields = [ name: 'priority', type: 'number', typeOptions: { + minValue: 1, maxValue: 4, }, description: 'Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low', @@ -407,6 +408,7 @@ export const taskFields = [ name: 'priority', type: 'number', typeOptions: { + minValue: 1, maxValue: 4, }, description: 'Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low',