Browse Source

fix: avoid encoding attachment title

pull/9151/head
mertmit 4 months ago
parent
commit
98141ff17b
  1. 2
      packages/nocodb/src/helpers/dataHelpers.ts

2
packages/nocodb/src/helpers/dataHelpers.ts

@ -177,7 +177,7 @@ export async function serializeCellValue(
.filter((attachment) => attachment)
.map(
(attachment) =>
`${encodeURI(attachment.title || 'Attachment')}(${encodeURI(
`${attachment.title || 'Attachment'}(${encodeURI(
attachment.signedPath
? `${siteUrl}/${attachment.signedPath}`
: attachment.signedUrl,

Loading…
Cancel
Save