diff --git a/web/app/components/workflow/run/node.tsx b/web/app/components/workflow/run/node.tsx index 49a2ff4641..61d15a159c 100644 --- a/web/app/components/workflow/run/node.tsx +++ b/web/app/components/workflow/run/node.tsx @@ -93,8 +93,8 @@ const NodePanel: FC = ({ nodeInfo, className }) => { readOnly title={
INPUT
} language={CodeLanguage.json} - value={JSON.stringify(nodeInfo.inputs)} - onChange={() => {}} + value={nodeInfo.inputs} + isJSONStringifyBeauty /> {nodeInfo.process_data && ( @@ -103,8 +103,8 @@ const NodePanel: FC = ({ nodeInfo, className }) => { readOnly title={
PROCESS DATA
} language={CodeLanguage.json} - value={JSON.stringify(nodeInfo.process_data)} - onChange={() => {}} + value={nodeInfo.process_data} + isJSONStringifyBeauty /> )} @@ -114,8 +114,8 @@ const NodePanel: FC = ({ nodeInfo, className }) => { readOnly title={
OUTPUT
} language={CodeLanguage.json} - value={JSON.stringify(nodeInfo.outputs)} - onChange={() => {}} + value={nodeInfo.outputs} + isJSONStringifyBeauty /> )}