diff --git a/src/app/common/directives/node-versions.directive.ts b/src/app/common/directives/node-versions.directive.ts index 49c7ee484..e94d6c13a 100644 --- a/src/app/common/directives/node-versions.directive.ts +++ b/src/app/common/directives/node-versions.directive.ts @@ -58,9 +58,9 @@ export class NodeVersionsDirective { if (this.node && this.node.entry) { let entry = this.node.entry; - if (entry.nodeId) { + if (entry.nodeId || (entry).guid) { entry = await this.apiService.nodesApi.getNodeInfo( - entry.nodeId, + entry.nodeId || (entry).id, { include: ['allowableOperations'] } ); this.openVersionManagerDialog(entry);