diff --git a/src/app/components/info-drawer/info-drawer.component.ts b/src/app/components/info-drawer/info-drawer.component.ts index 334a01080..bc9b56cc3 100644 --- a/src/app/components/info-drawer/info-drawer.component.ts +++ b/src/app/components/info-drawer/info-drawer.component.ts @@ -75,6 +75,9 @@ export class InfoDrawerComponent implements OnChanges { const entry = this.node.entry; if (entry.nodeId) { this.loadNodeInfo(entry.nodeId); + } else if ((entry).guid) { + // workaround for Favorite files + this.loadNodeInfo(entry.id); } else { this.displayNode = this.node.entry; }