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 9efa1a749..8a1d41e71 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 @@ -220,7 +220,7 @@ return L.view.extend({ a = this.formvalue(section_id), p = port ? port[0].formvalue(section_id) : null; - if ((a == null || a == '') && (p == null || p == '')) + if ((a == null || a == '') && (p == null || p == '') && value == '') return _('A rewrite IP must be specified!'); return true; |