Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ depinfo = { path = "packages/depinfo", version = "0.7.0-rc.0" }
warnings = { version = "0.2.1" }

# blitz
blitz-dom = { version = "=0.1.0-rc.3", default-features = false }
blitz-net = { version = "=0.1.0-rc.3" }
blitz-html = { version = "=0.1.0-rc.3" }
blitz-paint = { version = "=0.1.0-rc.3" }
blitz-traits = { version = "=0.1.0-rc.3" }
blitz-shell = { version = "=0.1.0-rc.3", default-features = false }
blitz-dom = { version = "0.1", default-features = false }
blitz-net = { version = "0.1" }
blitz-html = { version = "0.1" }
blitz-paint = { version = "0.1" }
blitz-traits = { version = "0.1" }
blitz-shell = { version = "0.1", default-features = false }
anyrender = { version = "0.5", default-features = false }
anyrender_vello = { version = "0.5", default-features = false }
wgpu = { version = "24.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/native-dom/src/dioxus_document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl EventHandler for DioxusEventHandler<'_> {
// Get dioxus vdom id for node
let dioxus_id = mutr.doc.get_node(node_id).and_then(get_dioxus_id);
let Some(id) = dioxus_id else {
return;
continue;
};

// Handle event in vdom
Expand Down
Loading