fix: no json output vars in front-page tool (#5943)

This commit is contained in:
非法操作
2024-07-04 16:15:56 +08:00
committed by GitHub
parent 4d9c22bfc6
commit 46eca01fa3
4 changed files with 11 additions and 0 deletions

View File

@@ -377,6 +377,10 @@ export const TOOL_OUTPUT_STRUCT: Var[] = [
variable: 'files',
type: VarType.arrayFile,
},
{
variable: 'json',
type: VarType.arrayObject,
},
]
export const PARAMETER_EXTRACTOR_COMMON_STRUCT: Var[] = [

View File

@@ -131,6 +131,11 @@ const Panel: FC<NodePanelProps<ToolNodeType>> = ({
type='Array[File]'
description={t(`${i18nPrefix}.outputVars.files.title`)}
/>
<VarItem
name='json'
type='Array[Object]'
description={t(`${i18nPrefix}.outputVars.json`)}
/>
</>
</OutputVars>
</div>