mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 11:56:55 +08:00
fix: style
This commit is contained in:
parent
8cffbc6b2a
commit
fd7fded6e5
@ -93,8 +93,8 @@ const NodePanel: FC<Props> = ({ nodeInfo, className }) => {
|
|||||||
readOnly
|
readOnly
|
||||||
title={<div>INPUT</div>}
|
title={<div>INPUT</div>}
|
||||||
language={CodeLanguage.json}
|
language={CodeLanguage.json}
|
||||||
value={JSON.stringify(nodeInfo.inputs)}
|
value={nodeInfo.inputs}
|
||||||
onChange={() => {}}
|
isJSONStringifyBeauty
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{nodeInfo.process_data && (
|
{nodeInfo.process_data && (
|
||||||
@ -103,8 +103,8 @@ const NodePanel: FC<Props> = ({ nodeInfo, className }) => {
|
|||||||
readOnly
|
readOnly
|
||||||
title={<div>PROCESS DATA</div>}
|
title={<div>PROCESS DATA</div>}
|
||||||
language={CodeLanguage.json}
|
language={CodeLanguage.json}
|
||||||
value={JSON.stringify(nodeInfo.process_data)}
|
value={nodeInfo.process_data}
|
||||||
onChange={() => {}}
|
isJSONStringifyBeauty
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@ -114,8 +114,8 @@ const NodePanel: FC<Props> = ({ nodeInfo, className }) => {
|
|||||||
readOnly
|
readOnly
|
||||||
title={<div>OUTPUT</div>}
|
title={<div>OUTPUT</div>}
|
||||||
language={CodeLanguage.json}
|
language={CodeLanguage.json}
|
||||||
value={JSON.stringify(nodeInfo.outputs)}
|
value={nodeInfo.outputs}
|
||||||
onChange={() => {}}
|
isJSONStringifyBeauty
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user