Merge pull request #707 from Demonthos/fix-namespace-on-dynamic-attributes

Fix the namespace and volatility of dynamic attributes
This commit is contained in:
Jon Kelley 2023-01-03 15:25:37 -05:00 committed by GitHub
commit 7050550685
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -246,8 +246,8 @@ impl ToTokens for ElementAttrNamed {
__cx.attr( __cx.attr(
dioxus_elements::#el_name::#name.0, dioxus_elements::#el_name::#name.0,
#value, #value,
None, dioxus_elements::#el_name::#name.1,
false dioxus_elements::#el_name::#name.2
) )
} }
} }
@ -256,8 +256,8 @@ impl ToTokens for ElementAttrNamed {
__cx.attr( __cx.attr(
dioxus_elements::#el_name::#name.0, dioxus_elements::#el_name::#name.0,
#value, #value,
None, dioxus_elements::#el_name::#name.1,
false dioxus_elements::#el_name::#name.2
) )
} }
} }