summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/PrefFilterTree.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js
index eded7e383..4ccddfa75 100644
--- a/js/PrefFilterTree.js
+++ b/js/PrefFilterTree.js
@@ -28,8 +28,8 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
const rules = this.model.store.getValue(args.item, 'rules');
if (param) {
- param = dojo.doc.createElement('span');
- param.className = (enabled != false) ? 'labelParam' : 'labelParam filterDisabled';
+ param = dojo.doc.createElement('ul');
+ param.className = (enabled != false) ? 'actions_summary' : 'actions_summary filterDisabled';
param.innerHTML = args.item.param[0];
domConstruct.place(param, tnode.rowNode, 'first');
}