From: Paul Donald Date: Mon, 2 Feb 2026 21:40:20 +0000 (+0100) Subject: luci-app-firewall: enable row filtering for firewall rules X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d9036435d5f65cb85ddd5ef43aa0e6234c2cb4d5;p=openwrt-luci.git luci-app-firewall: enable row filtering for firewall rules This is an area users seem to have most trouble searching (via the browser window search), and firewall tables tend to be the largest tables. Enable search. Signed-off-by: Paul Donald --- diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js index 524688233b..3c3894b9f1 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js @@ -157,6 +157,7 @@ return view.extend({ s.anonymous = true; s.sortable = true; s.cloneable = true; + s.filterrow = true; s.tab('general', _('General Settings')); s.tab('advanced', _('Advanced Settings')); diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index 95b91b5445..751d3f138f 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -178,6 +178,7 @@ return view.extend({ s.anonymous = true; s.sortable = true; s.cloneable = true; + s.filterrow = true; s.tab('general', _('General Settings')); s.tab('advanced', _('Advanced Settings')); diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js index c6299f2fcf..8069be06cb 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js @@ -177,6 +177,7 @@ return view.extend({ s.anonymous = true; s.sortable = true; s.cloneable = true; + s.filterrow = true; s.tab('general', _('General Settings')); s.tab('advanced', _('Advanced Settings')); diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js index dc9b094c32..bcf2c1b243 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js @@ -102,6 +102,7 @@ return view.extend({ s.addremove = true; s.anonymous = true; s.sortable = true; + s.filterrow = true; s.nodescriptions = true; s.handleRemove = function(section_id, ev) {