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