From: Paul Donald Date: Fri, 3 Apr 2026 17:01:10 +0000 (+0200) Subject: luci-app-dockerman: return true for net validate X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3eca54ee2e86f4508f8b3b725d692404a481fd62;p=openwrt-luci.git luci-app-dockerman: return true for net validate When all other conditions pass, the function shall return true. Signed-off-by: Paul Donald --- diff --git a/applications/luci-app-dockerman/htdocs/luci-static/resources/view/dockerman/container_new.js b/applications/luci-app-dockerman/htdocs/luci-static/resources/view/dockerman/container_new.js index a2da8767c7..d624ec0e50 100644 --- a/applications/luci-app-dockerman/htdocs/luci-static/resources/view/dockerman/container_new.js +++ b/applications/luci-app-dockerman/htdocs/luci-static/resources/view/dockerman/container_new.js @@ -249,6 +249,7 @@ return dm2.dv.extend({ let dnet = this.section.getOption('network').getUIElement(section_id).getValue(); const disallowed = builtInNetworks.has(dnet); if (disallowed) return _('Only for user-defined networks'); + return true; }; o = s.option(form.Value, 'ipv4', _('IPv4 Address'));