From cc2df4d3ab9599e400026cd59e0b53d673a36403 Mon Sep 17 00:00:00 2001 From: Mminamiyama Date: Fri, 11 Jul 2025 16:07:55 +0800 Subject: [PATCH] style(workflow): adjust drag handle position and variable icon opacity Update drag handle positioning from negative to positive left value and change its text color. Also add hover opacity effect to variable icon for better visual feedback. --- web/app/components/workflow/nodes/start/components/var-item.tsx | 2 +- web/app/components/workflow/nodes/start/components/var-list.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/components/workflow/nodes/start/components/var-item.tsx b/web/app/components/workflow/nodes/start/components/var-item.tsx index c25e587a60..603a2b2160 100644 --- a/web/app/components/workflow/nodes/start/components/var-item.tsx +++ b/web/app/components/workflow/nodes/start/components/var-item.tsx @@ -52,7 +52,7 @@ const VarItem: FC = ({ return (
- +
{payload.variable}
{payload.label && (<>
ยท
{payload.label as string}
diff --git a/web/app/components/workflow/nodes/start/components/var-list.tsx b/web/app/components/workflow/nodes/start/components/var-list.tsx index d1820ba98c..db5b9e9882 100644 --- a/web/app/components/workflow/nodes/start/components/var-list.tsx +++ b/web/app/components/workflow/nodes/start/components/var-list.tsx @@ -93,7 +93,7 @@ const VarList: FC = ({ varKeys={list.map(item => item.variable)} /> {canDrag &&