From e8906e2f9824cd87d052ea39b2b3fc16e4a0ebaa Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Wed, 4 Dec 2024 12:04:00 -0800 Subject: [PATCH] Add task block back into node library (#1319) --- .../editor/panels/WorkflowNodeLibraryPanel.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx b/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx index abf7dea0..6de504a4 100644 --- a/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/panels/WorkflowNodeLibraryPanel.tsx @@ -6,6 +6,7 @@ import { DownloadIcon, EnvelopeClosedIcon, FileIcon, + ListBulletIcon, LockOpen1Icon, PlusIcon, StopwatchIcon, @@ -48,6 +49,12 @@ const nodeLibraryItems: Array<{ title: "Validation Block", description: "Validate the state of the workflow or terminate", }, + { + nodeType: "task", + icon: , + title: "Task Block", + description: "Takes actions or extracts information", + }, { nodeType: "textPrompt", icon: , @@ -60,13 +67,6 @@ const nodeLibraryItems: Array<{ title: "Send Email Block", description: "Sends an email", }, - // legacy - // { - // nodeType: "task", - // icon: , - // title: "Task Block", - // description: "Takes actions or extracts information", - // }, { nodeType: "loop", icon: ,