get info for favorite entry (#400)

This commit is contained in:
Cilibiu Bogdan
2018-06-12 12:12:42 +03:00
committed by Denys Vuika
parent f1171c06ec
commit 0c696b5991

View File

@@ -75,6 +75,9 @@ export class InfoDrawerComponent implements OnChanges {
const entry = this.node.entry;
if (entry.nodeId) {
this.loadNodeInfo(entry.nodeId);
} else if ((<any>entry).guid) {
// workaround for Favorite files
this.loadNodeInfo(entry.id);
} else {
this.displayNode = this.node.entry;
}