From 170c5a649e81013794b1542f194acaa2bf485e20 Mon Sep 17 00:00:00 2001 From: Celal Zamanoglu <95054566+celalzamanoglu@users.noreply.github.com> Date: Thu, 25 Dec 2025 00:05:45 +0300 Subject: [PATCH] updated tooltip and placeholder of conditional block (#4369) --- .../editor/nodes/ConditionalNode/ConditionalNode.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/nodes/ConditionalNode/ConditionalNode.tsx b/skyvern-frontend/src/routes/workflows/editor/nodes/ConditionalNode/ConditionalNode.tsx index 5f0da9bc..985de702 100644 --- a/skyvern-frontend/src/routes/workflows/editor/nodes/ConditionalNode/ConditionalNode.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/nodes/ConditionalNode/ConditionalNode.tsx @@ -682,7 +682,7 @@ function ConditionalNodeComponent({ id, data }: NodeProps) { {!activeBranch.is_default && ( 100 }}\nNatural language: y is greater than 100`} + content={`Jinja: {{ y > 100 }}\nNatural language: y is greater than 100\nJinja+Natural language: {{ y }} is greater than 100`} /> )} @@ -697,7 +697,7 @@ function ConditionalNodeComponent({ id, data }: NodeProps) { onChange={(value) => { handleExpressionChange(value); }} - placeholder="Enter condition to evaluate (Jinja or natural language)" + placeholder="Enter condition to evaluate (Jinja, natural language, or both)" /> )}