fix group representation in trash

This commit is contained in:
Antelle 2015-11-12 23:48:44 +03:00
parent 5649a41844
commit d6b314eed9
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ EntryPresenter.prototype = {
return this;
},
get id() { return this.entry ? this.entry.id : this.group.get('id'); },
get icon() { return this.entry ? this.entry.icon : this.group.get('icon'); },
get icon() { return this.entry ? this.entry.icon : (this.group.get('icon') || 'folder'); },
get color() { return this.entry ? this.entry.color : undefined; },
get title() { return this.entry ? this.entry.title : this.group.get('title'); },
get notes() { return this.entry ? this.entry.notes : undefined; },