Skip to content

Commit 26ba893

Browse files
committed
fix: The basic information node repeatedly turns on and off the file upload switch, and the audio variable of the starting node will increase repeatedly.
--bug=1050529 --user=刘瑞斌 【应用】-高级编排应用设置,基础信息节点反复开启关闭文件上传开关,开始节点的音频变量会重复增加 https://www.tapd.cn/57709429/s/1632488
1 parent b9013d7 commit 26ba893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/workflow/nodes/start-node/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const refreshFileUploadConfig = () => {
6969
.map((v: any) => cloneDeep(v.properties.node_data.file_upload_setting))
7070
.filter((v: any) => v)
7171
72-
fields = fields.filter((item: any) => item.value !== 'image' && item.value !== 'document')
72+
fields = fields.filter((item: any) => item.value !== 'image' && item.value !== 'document' && item.value !== 'audio' && item.value !== 'video')
7373
7474
if (form_data.length === 0) {
7575
set(props.nodeModel.properties.config, 'fields', fields)

0 commit comments

Comments
 (0)