diff options
Diffstat (limited to 'js')
| -rw-r--r-- | js/CommonFilters.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/CommonFilters.js b/js/CommonFilters.js index 83bc4cae9..f1f0e9e0c 100644 --- a/js/CommonFilters.js +++ b/js/CommonFilters.js @@ -20,7 +20,7 @@ const Filters = { PARAM_ACTIONS: [4, 6, 7, 9, 10], filter_info: {}, formatMatchedRules: function(rules) { - return rules.map((r) => r.regexp_matches[0] + ' - ' + r.reg_exp).join('\n'); + return rules.map((r) => r.regexp_matches[0] + ' - ' + r.reg_exp + ' (' + r.type + ')').join('\n'); }, test: function() { const test_dialog = new fox.SingleUseDialog({ |