From: Sergey Ponomarev Date: Sat, 3 Jun 2023 22:22:25 +0000 (+0300) Subject: luci-app-acme: Hide keysize and days columns X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e39d4a22f4f58ea2db309c28d0db1b8150a95703;p=openwrt-luci.git luci-app-acme: Hide keysize and days columns The columns makes little sense and instead we can keep more space for domains. The days is really advanced option that is better not to change and it's support may be removed for simplicity. Signed-off-by: Sergey Ponomarev --- diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 8f3c808b11..3f7dda3ae8 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -63,6 +63,7 @@ return view.extend({ o.value("ec-384", _("ECC 384 bits")); o.default = "2048"; o.rmempty = false; + o.modalonly = true; o = s.taboption('general', form.DynamicList, "domains", _("Domain names"), _("Domain names to include in the certificate. " + @@ -154,6 +155,7 @@ return view.extend({ o.optional = true; o.placeholder = 90; o.datatype = 'uinteger'; + o.modalonly = true; return m.render() }