Skip to content

Commit

Permalink
fix: don't try to hydrate inside <noscript> (closes #3360)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Dec 14, 2024
1 parent e65969c commit 2d6df12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tachys/src/html/element/elements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ html_elements! {
/// The `<nav>` HTML element represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.
nav HtmlElement [] true,
/// The `<noscript>` HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.
noscript HtmlElement [] true,
noscript HtmlElement [] false,
/// The `<object>` HTML element represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
object HtmlObjectElement [data, form, height, name, r#type, usemap, width] true,
/// The `<ol>` HTML element represents an ordered list of itemstypically rendered as a numbered list.
Expand Down

0 comments on commit 2d6df12

Please sign in to comment.