From 0c696b5991ace1e8c858b145a56b07de0729f754 Mon Sep 17 00:00:00 2001 From: Cilibiu Bogdan Date: Tue, 12 Jun 2018 12:12:42 +0300 Subject: [PATCH] get info for favorite entry (#400) --- src/app/components/info-drawer/info-drawer.component.ts | 3 +++ 1 file changed, 3 insertions(+) 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; }