From fd7fded6e5e1b27dabce59d44e5bbb2617a04792 Mon Sep 17 00:00:00 2001 From: StyleZhang Date: Thu, 21 Mar 2024 16:34:31 +0800 Subject: [PATCH] fix: style --- web/app/components/workflow/run/node.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 /> )}