From 03f9c6cb6d3d0325bae41472f8c81e55520e16f6 Mon Sep 17 00:00:00 2001 From: Alexis Fontaine Date: Mon, 10 Feb 2025 23:19:00 +0000 Subject: [PATCH] fix: add `
` attributes (#3581) --- tachys/src/html/element/elements.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tachys/src/html/element/elements.rs b/tachys/src/html/element/elements.rs index 237cd2ba58..c92bce269a 100644 --- a/tachys/src/html/element/elements.rs +++ b/tachys/src/html/element/elements.rs @@ -283,7 +283,7 @@ html_elements! { /// The `` HTML element marks text that has stress emphasis. The `` element can be nested, with each level of nesting indicating a greater degree of emphasis. em HtmlElement [] true, /// The `
` HTML element is used to group several controls as well as labels (label) within a web form. - fieldset HtmlFieldSetElement [] true, + fieldset HtmlFieldSetElement [disabled, form, name] true, /// The `
` HTML element represents a caption or legend describing the rest of the contents of its parent figure element. figcaption HtmlElement [] true, /// The `
` HTML element represents self-contained content, potentially with an optional caption, which is specified using the figcaption element. The figure, its caption, and its contents are referenced as a single unit.