applications/luci-firewall: javascript & validation fixes in quickaction forms
[project/luci.git] / applications / luci-firewall / luasrc / view / firewall / cbi_addsnat.htm
index 28bb22d40ad4e3366c25ae41cf166f64f02bae3e..4e1681c11d9149279898ba556ba1ce6edac49b1a 100644 (file)
 
                <script type="text/javascript">//<![CDATA[
                        cbi_validate_field('_newsnat.dport', true, 'portrange');
+                       cbi_validate_field('_newsnat.dip', true, 'ip4addr');
                        cbi_combobox_init('_newsnat.dip', {
                                <% local c, k, v = 0; for k, v in ipairs(nw:get_interfaces()) do -%>
                                        <%- local a; for k, a in ipairs(v:ipaddrs()) do c = c + 1 -%>
-                                               <% if c > 1 then %>,<% end %>'<%=a:host():string()%>': '<%=a:host():string()%> (<%=v:shortname()%>)',
+                                               <% if c > 1 then %>,<% end %>'<%=a:host():string()%>': '<%=a:host():string()%> (<%=v:shortname()%>)'
                                        <%- end %>
                                <%- end %> }, '<%: -- Please choose -- %>', '<%: -- custom -- %>');
                //]]></script>