From 480f7a43ef1e571fe6800afd547da0c41cd3ec4e Mon Sep 17 00:00:00 2001 From: Axolotle Date: Wed, 1 Feb 2023 18:13:07 +0100 Subject: [PATCH] fix domain_config.toml typos in conditions --- share/config_domain.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/config_domain.toml b/share/config_domain.toml index b1ec436c5..c67996d13 100644 --- a/share/config_domain.toml +++ b/share/config_domain.toml @@ -64,24 +64,24 @@ name = "Certificate" [cert.cert.acme_eligible_explain] type = "alert" style = "warning" - visible = "acme_eligible == false || acme_elligible == null" + visible = "acme_eligible == false || acme_eligible == null" [cert.cert.cert_no_checks] ask = "Ignore diagnosis checks" type = "boolean" default = false - visible = "acme_eligible == false || acme_elligible == null" + visible = "acme_eligible == false || acme_eligible == null" [cert.cert.cert_install] type = "button" icon = "star" style = "success" - visible = "issuer != 'letsencrypt'" + visible = "cert_issuer != 'letsencrypt'" enabled = "acme_eligible || cert_no_checks" [cert.cert.cert_renew] type = "button" icon = "refresh" style = "warning" - visible = "issuer == 'letsencrypt'" + visible = "cert_issuer == 'letsencrypt'" enabled = "acme_eligible || cert_no_checks"