From ab3a649646ae148e05bc5d78a556991e65252fab Mon Sep 17 00:00:00 2001 From: Bendik Aagaard Lynghaug Date: Sun, 30 Aug 2026 23:08:59 +0200 Subject: [PATCH] Hidden fields: carrier value without a label row MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A type: hidden requirement rendered through the fallback branch, whose label wrapper shows the field name — so a preset key listed as a second visible field under the email. Bare hidden input, no row. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Y42TyF8Zu7NGRR2893vNcZ --- src/app.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/app.rs b/src/app.rs index 539b210..c2fea3e 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1244,6 +1244,20 @@ fn AlternativeCard( .into_any(); } + if req.kind == "hidden" { + // A carrier value only — no label row, or a + // preset key reads as a second visible field. + return view! { + + } + .into_any(); + } + view! {