Skip to content

Commit

Permalink
fix: tool's file input display string (#10887)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjlarry authored Nov 20, 2024
1 parent 33cfc56 commit f3af7b5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f3af7b5

Please sign in to comment.