diff --git a/skyvern-frontend/src/routes/workflows/debugger/DebuggerPostRunParameters.tsx b/skyvern-frontend/src/routes/workflows/debugger/DebuggerPostRunParameters.tsx index 3196f55b..b45163c4 100644 --- a/skyvern-frontend/src/routes/workflows/debugger/DebuggerPostRunParameters.tsx +++ b/skyvern-frontend/src/routes/workflows/debugger/DebuggerPostRunParameters.tsx @@ -13,6 +13,7 @@ import { DebuggerSendEmailBlockParameters } from "./DebuggerSendEmailBlockInfo"; import { ProxyLocation } from "@/api/types"; import { KeyValueInput } from "@/components/KeyValueInput"; import { HelpTooltip } from "@/components/HelpTooltip"; +import { Switch } from "@/components/ui/switch"; function DebuggerPostRunParameters() { const { data: workflowRunTimeline, isLoading: workflowRunTimelineIsLoading } = @@ -104,6 +105,127 @@ function DebuggerPostRunParameters() { ) : null} + {activeBlock && activeBlock.block_type === WorkflowBlockTypes.Wait ? ( +
+ {condition.description} +
+ ) : null} + {condition.criteria?.expression ? ( +
+ {condition.criteria.expression}
+
+