diff options
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 6ccb075569..9c3d5e7a31 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 @@ -318,7 +318,7 @@ return view.extend({ o = s.taboption('advanced', form.Value, 'ipset', _('Use ipset')); uci.sections('firewall', 'ipset', function(s) { if (typeof(s.name) == 'string') - this.value(s.name, s.comment ? '%s (%s)'.format(s.name, s.comment) : s.name); + o.value(s.name, s.comment ? '%s (%s)'.format(s.name, s.comment) : s.name); }); o.modalonly = true; o.rmempty = true; |