Merge pull request #2017 from DioxusLabs/jk/reject-invalid-keys

Fix: pushroot should actually push the right root on native mutations
This commit is contained in:
Jonathan Kelley 2024-03-07 18:06:44 -08:00 committed by GitHub
commit db83ed775b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,7 +196,7 @@ impl WriteMutations for MutationState {
self.channel.remove(id.0 as u32);
}
fn push_root(&mut self, _id: dioxus_core::ElementId) {
self.channel.push_root(0);
fn push_root(&mut self, id: dioxus_core::ElementId) {
self.channel.push_root(id.0 as _);
}
}