mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 07:58:02 +08:00
fix: http nodes update error and support json
This commit is contained in:
@ -57,7 +57,6 @@ const Panel: FC<NodePanelProps<CodeNodeType>> = ({
|
||||
/>
|
||||
</Field>
|
||||
<Split />
|
||||
{inputs.code_language}
|
||||
<CodeEditor
|
||||
readOnly={readOnly}
|
||||
title={
|
||||
|
||||
@ -3,6 +3,7 @@ import type { CommonNodeType, Variable } from '@/app/components/workflow/types'
|
||||
export enum CodeLanguage {
|
||||
python3 = 'python3',
|
||||
javascript = 'javascript',
|
||||
json = 'json',
|
||||
}
|
||||
|
||||
export type OutputVar = {
|
||||
|
||||
Reference in New Issue
Block a user