fallback to global attributes when mapping rsx rosetta html attribute names

This commit is contained in:
Evan Almloff 2024-01-03 15:45:19 -06:00
parent bc557906fe
commit 682beeccfd

View file

@ -345,6 +345,14 @@ macro_rules! builder_constructors {
)*
)*
if let Some(name) = crate::map_html_global_attributes_to_rsx(html) {
return Some(name);
}
if let Some(name) = crate::map_html_svg_attributes_to_rsx(html) {
return Some(name);
}
None
}