Merge branch 'tree_tooltip_error' of ggrandou/tt-rss into master

This commit is contained in:
fox 2018-12-10 12:07:54 +00:00 committed by Gogs
commit cc267217e1
1 changed files with 1 additions and 4 deletions

View File

@ -168,10 +168,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "dijit/Tree", "dijit/Menu"],
},
getTooltip: function (item) {
if (item.updated)
return item.updated;
else
return "";
return [item.updated, item.error].filter(x => x && x != "").join(" - ");
},
getIconClass: function (item, opened) {
return (!item || this.model.mayHaveChildren(item)) ? (opened ? "dijitFolderOpened" : "dijitFolderClosed") : "feed-icon";