🐛 (fileUpload) Fix results file display if name contains comma
Closes #955
This commit is contained in:
@@ -10,7 +10,7 @@ export const FileLinks = ({ fileNamesStr }: { fileNamesStr: string }) => {
|
||||
<HStack as={WrapItem} key={name}>
|
||||
<FileIcon />
|
||||
<TextLink href={name} isExternal>
|
||||
{name.split('/').pop()}
|
||||
{decodeURIComponent(name.split('/').pop() ?? '')}
|
||||
</TextLink>
|
||||
</HStack>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user