mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 08:27:07 +00:00
feat: should be functional across the boar
This commit is contained in:
parent
c10c1f418b
commit
74c6211408
1 changed files with 3 additions and 2 deletions
|
@ -1155,8 +1155,9 @@ impl<'bump> DiffState<'bump> {
|
|||
VNode::Element(t) => break t.dom_id.get(),
|
||||
VNode::Suspended(t) => break t.dom_id.get(),
|
||||
VNode::Anchor(t) => break t.dom_id.get(),
|
||||
VNode::Linked(_) => {
|
||||
todo!()
|
||||
VNode::Linked(l) => {
|
||||
let node: &VNode = unsafe { std::mem::transmute(&*l.node) };
|
||||
self.find_last_element(node);
|
||||
}
|
||||
VNode::Fragment(frag) => {
|
||||
search_node = frag.children.last();
|
||||
|
|
Loading…
Reference in a new issue