From e39d4a22f4f58ea2db309c28d0db1b8150a95703 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sun, 4 Jun 2023 01:22:25 +0300 Subject: [PATCH] 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 --- .../luci-app-acme/htdocs/luci-static/resources/view/acme.js | 2 ++ 1 file changed, 2 insertions(+) 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() } -- 2.30.2