mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 22:54:12 +00:00
Merge pull request #707 from Demonthos/fix-namespace-on-dynamic-attributes
Fix the namespace and volatility of dynamic attributes
This commit is contained in:
commit
7050550685
1 changed files with 4 additions and 4 deletions
|
@ -246,8 +246,8 @@ impl ToTokens for ElementAttrNamed {
|
|||
__cx.attr(
|
||||
dioxus_elements::#el_name::#name.0,
|
||||
#value,
|
||||
None,
|
||||
false
|
||||
dioxus_elements::#el_name::#name.1,
|
||||
dioxus_elements::#el_name::#name.2
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -256,8 +256,8 @@ impl ToTokens for ElementAttrNamed {
|
|||
__cx.attr(
|
||||
dioxus_elements::#el_name::#name.0,
|
||||
#value,
|
||||
None,
|
||||
false
|
||||
dioxus_elements::#el_name::#name.1,
|
||||
dioxus_elements::#el_name::#name.2
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue