1
0
Эх сурвалжийг харах

fallback to global attributes when mapping rsx rosetta html attribute names

Evan Almloff 1 жил өмнө
parent
commit
682beeccfd

+ 8 - 0
packages/html/src/elements.rs

@@ -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
         }