diff --git a/web/src/components/xyflow/tooltip-node.tsx b/web/src/components/xyflow/tooltip-node.tsx index b53c67617..8acb80b06 100644 --- a/web/src/components/xyflow/tooltip-node.tsx +++ b/web/src/components/xyflow/tooltip-node.tsx @@ -40,6 +40,7 @@ export const TooltipNode = forwardRef( onBlur={hideTooltip} tabIndex={0} selected={selected} + className="h-full bg-transparent" > {children} @@ -65,7 +66,7 @@ export const TooltipContent = forwardRef(
- -
-
- - - - - + +
+ + + + + - -
+ + +
); } diff --git a/web/src/pages/agent/constant.tsx b/web/src/pages/agent/constant.tsx index bbb44966f..022a2742b 100644 --- a/web/src/pages/agent/constant.tsx +++ b/web/src/pages/agent/constant.tsx @@ -667,6 +667,7 @@ export const initialCodeValues = { arg1: '', arg2: '', }, + outputs: { result: { value: '', type: 'string' } }, }; export const initialWaitingDialogueValues = {};