fix: serialize custom attrs properly

This commit is contained in:
Jonathan Kelley 2022-12-25 23:58:31 -05:00
parent 641488e825
commit 8b854963e9

View file

@ -66,6 +66,7 @@ impl Parse for Element {
if content.parse::<Token![,]>().is_err() {
missing_trailing_comma!(ident.span());
}
continue;
}
@ -264,7 +265,7 @@ impl ToTokens for ElementAttrNamed {
ElementAttr::CustomAttrText { name, value } => {
quote! {
__cx.attr(
dioxus_elements::#el_name::#name.0,
#name,
#value,
None,
false
@ -274,7 +275,7 @@ impl ToTokens for ElementAttrNamed {
ElementAttr::CustomAttrExpression { name, value } => {
quote! {
__cx.attr(
dioxus_elements::#el_name::#name.0,
#name,
#value,
None,
false