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) .filter((attachment) => attachment)
.map( .map(
(attachment) => (attachment) =>
`${encodeURI(attachment.title || 'Attachment')}(${encodeURI( `${attachment.title || 'Attachment'}(${encodeURI(
attachment.signedPath attachment.signedPath
? `${siteUrl}/${attachment.signedPath}` ? `${siteUrl}/${attachment.signedPath}`
: attachment.signedUrl, : attachment.signedUrl,

Loading…
Cancel
Save