mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:48:33 +00:00
do not encode signed url
This commit is contained in:
@@ -85,11 +85,11 @@ export async function serializeCellValue(
|
||||
.filter((attachment) => attachment)
|
||||
.map(
|
||||
(attachment) =>
|
||||
`${attachment.title || 'Attachment'}(${encodeURI(
|
||||
`${attachment.title || 'Attachment'}(${
|
||||
attachment.signedPath
|
||||
? `${siteUrl}/${attachment.signedPath}`
|
||||
: attachment.signedUrl,
|
||||
)})`,
|
||||
? encodeURI(`${siteUrl}/${attachment.signedPath}`)
|
||||
: attachment.signedUrl
|
||||
})`,
|
||||
)
|
||||
.join(', ');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user