diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-03-15 23:33:56 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2023-03-15 23:34:57 +0100 |
commit | c0d4c0172529e060926e8fa00714bd9e8b567cb4 (patch) | |
tree | c4ecdf3a442908603cb95a3dadff784840e773d7 /applications/luci-app-firewall/htdocs/luci-static/resources/view | |
parent | 94295d6387bf8326c8dd059b8e236167d52bde4f (diff) |
luci-app-firewall: suppress lengthy masq description in zone table
Ensure that the description of the masquerade option does not end up in
the grid section overview as it messes up the table layout.
Fixes: c54efde717 ("luci-app-firewall: Add clarification to masquerading option")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js | 1 |
1 files changed, 1 insertions, 0 deletions
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 53a07b6fb1..e19e466e1b 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 @@ -95,6 +95,7 @@ return view.extend({ s.addremove = true; s.anonymous = true; s.sortable = true; + s.nodescriptions = true; s.handleRemove = function(section_id, ev) { return firewall.deleteZone(section_id).then(L.bind(function() { |