From 3644937fffbd2a8ff73f7141329e04403d0eabd7 Mon Sep 17 00:00:00 2001 From: axolotle Date: Wed, 2 Mar 2022 20:46:51 +0100 Subject: [PATCH] fix config domain syntax --- share/config_domain.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/share/config_domain.toml b/share/config_domain.toml index 84201b845..7189003d3 100644 --- a/share/config_domain.toml +++ b/share/config_domain.toml @@ -63,6 +63,7 @@ i18n = "domain_config" [cert] [cert.status] + name = "Status" [cert.status.cert_summary] type = "alert" @@ -71,21 +72,19 @@ i18n = "domain_config" [cert.status.cert_validity] type = "number" readonly = true - visible = "false" # Automatically filled by DomainConfigPanel [cert.cert] + name = "Manage" [cert.cert.cert_issuer] type = "string" - readonly = true - visible = "false" + visible = false # Automatically filled by DomainConfigPanel [cert.cert.acme_eligible] type = "boolean" - readonly = true - visible = "false" + visible = false # Automatically filled by DomainConfigPanel [cert.cert.acme_eligible_explain] @@ -107,7 +106,8 @@ i18n = "domain_config" icon = "star" style = "success" visible = "issuer != 'letsencrypt'" - enabled = "acme_eligible or cert_no_checks" + enabled = "acme_eligible || cert_no_checks" + args = ["cert_no_checks"] [cert.cert.cert_renew] ask = "Renew Let's Encrypt certificate" @@ -116,4 +116,4 @@ i18n = "domain_config" icon = "refresh" style = "warning" visible = "issuer == 'letsencrypt'" - enabled = "acme_eligible or cert_no_checks" + enabled = "acme_eligible || cert_no_checks"