[ACS-6412] - Some operations are broken when executed on file created from template (#9207)

This commit is contained in:
DominikIwanek
2024-01-02 14:46:42 +01:00
committed by GitHub
parent 6afa5df518
commit 6549235dae

View File

@@ -105,7 +105,7 @@ export class ActivitiContentService {
const params: RelatedContentRepresentation = { const params: RelatedContentRepresentation = {
source: accountId, source: accountId,
mimeType: node?.content?.mimeType, mimeType: node?.content?.mimeType,
sourceId: node.id + ';' + node.properties['cm:versionLabel'] + '@' + currentSideId, sourceId: node.id + ';' + node.properties?.['cm:versionLabel'] + '@' + currentSideId,
name: node.name, name: node.name,
link: node.isLink link: node.isLink
}; };