summaryrefslogtreecommitdiff
path: root/js/PrefFilterTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-19 12:08:06 +0300
committerAndrew Dolgov <[email protected]>2018-12-19 12:08:06 +0300
commit51b069a1ee0017635e6b6639c5a25643c2289c09 (patch)
treed6d6a4d0c11fedd3b852e4d629b62cfa09ea1fa1 /js/PrefFilterTree.js
parente3c4540c12f9d821822d69b4f75b6d394e912a57 (diff)
display filter tree rules as a list
Diffstat (limited to 'js/PrefFilterTree.js')
-rw-r--r--js/PrefFilterTree.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js
index 0a8a2aa43..a7c7464fb 100644
--- a/js/PrefFilterTree.js
+++ b/js/PrefFilterTree.js
@@ -17,7 +17,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
}
if (rules) {
- param = dojo.doc.createElement('span');
+ param = dojo.doc.createElement('ul');
param.className = 'filterRules';
param.innerHTML = rules;
domConstruct.place(param, tnode.rowNode, 'next');