diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-06-04 01:22:25 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-08-08 00:44:10 +0300 |
commit | e39d4a22f4f58ea2db309c28d0db1b8150a95703 (patch) | |
tree | e5a75f0cab44af2ac90b843bb6ef18daf12bbe4b /applications/luci-app-acme/htdocs/luci-static/resources/view | |
parent | ea516da183861f99be8970139a77c2dcec8ae792 (diff) |
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 <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-acme/htdocs/luci-static/resources/view')
-rw-r--r-- | applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js | 2 |
1 files changed, 2 insertions, 0 deletions
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() } |