Jelajahi Sumber

fix: tool's file input display string (#10887)

非法操作 5 bulan lalu
induk
melakukan
f3af7b5f35

+ 2 - 0
web/app/components/workflow/nodes/tool/components/input-var-list.tsx

@@ -46,6 +46,8 @@ const InputVarList: FC<Props> = ({
   const paramType = (type: string) => {
     if (type === FormTypeEnum.textNumber)
       return 'Number'
+    else if (type === FormTypeEnum.file)
+      return 'File'
     else if (type === FormTypeEnum.files)
       return 'Files'
     else if (type === FormTypeEnum.select)