From 224b4edcad33ed100c0d87255c87437ba592c5a4 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 00:04:11 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/settings.workflows.tsx | 40 ++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 8 deletions(-) diff --git a/src/routes/settings.workflows.tsx b/src/routes/settings.workflows.tsx index e978c54..854feb6 100644 --- a/src/routes/settings.workflows.tsx +++ b/src/routes/settings.workflows.tsx @@ -181,7 +181,16 @@ function WorkflowsPage() { selected?.id === t.id ? "bg-accent" : "" }`} > -
{t.name}
+
+
{t.name}
+ + {t.kind === "collection" ? "Collection" : "Task"} + +
{t.description &&
{t.description}
} ))} @@ -195,16 +204,31 @@ function WorkflowsPage() { ) : (
-
-
-
{selected.name}
+
+
+
{selected.name}
{selected.description && ( -
{selected.description}
+
{selected.description}
)}
- +
+ + + +
{tasks.map((t) => (