summaryrefslogtreecommitdiff
path: root/js/PrefFilterTree.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/PrefFilterTree.js')
-rw-r--r--js/PrefFilterTree.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js
index be321fd21..f4fc8ecf2 100644
--- a/js/PrefFilterTree.js
+++ b/js/PrefFilterTree.js
@@ -23,13 +23,13 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
domConstruct.place(param, tnode.rowNode, 'next');
}
- if (this.model.store.getValue(args.item, 'id') != 'root') {
- const img = dojo.doc.createElement('img');
- img.src ='images/filter.png';
- img.className = 'marked-pic';
- tnode._filterIconNode = img;
+ /* if (this.model.store.getValue(args.item, 'id') != 'root') {
+ const i = dojo.doc.createElement('i');
+ i.className = 'material-icons filter';
+ i.innerHTML = 'label';
+ tnode._filterIconNode = i;
domConstruct.place(tnode._filterIconNode, tnode.labelNode, 'before');
- }
+ } */
return tnode;
},