public inbox for yew-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum
@ 2026-08-24  7:16 Dominik Csapak
  2026-08-24  7:19 ` Dominik Csapak
  2026-08-24  7:55 ` superseded: " Dominik Csapak
  0 siblings, 2 replies; 3+ messages in thread
From: Dominik Csapak @ 2026-08-24  7:16 UTC (permalink / raw)
  To: yew-devel

as this delay is in seconds, and the maximum in the backend is 48 hours,
use the same 48 hours limit on the frontend (like in the ExtJS UI).

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 src/acme/acme_plugins.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/acme/acme_plugins.rs b/src/acme/acme_plugins.rs
index 82e97e3..4ef46fa 100644
--- a/src/acme/acme_plugins.rs
+++ b/src/acme/acme_plugins.rs
@@ -412,7 +412,7 @@ impl ProxmoxAcmePluginsPanel {
                 tr!("Validation Delay"),
                 Number::<u8>::new()
                     .name("validation-delay")
-                    .max(48)
+                    .max(48 * 60 * 60)
                     .placeholder("30"),
             )
             .with_field(
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-24  7:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24  7:16 [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum Dominik Csapak
2026-08-24  7:19 ` Dominik Csapak
2026-08-24  7:55 ` superseded: " Dominik Csapak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal