Enable External Links Without Modifier (#2983)

* make external links usable without modifier

---------

Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
This commit is contained in:
Leon Wimbes 2024-11-13 19:43:38 +01:00 committed by GitHub
parent 21465390f8
commit e7e624f05e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -198,13 +198,13 @@ pub fn Link(props: LinkProps) -> Element {
if !event.modifiers().is_empty() { if !event.modifiers().is_empty() {
return; return;
} }
// only handle left clicks // Only handle left clicks
if event.trigger_button() != Some(dioxus_elements::input_data::MouseButton::Primary) { if event.trigger_button() != Some(dioxus_elements::input_data::MouseButton::Primary) {
return; return;
} }
// todo(jon): this is extra hacky for no reason - we should fix prevent default on Links // todo(jon): this is extra hacky for no reason - we should fix prevent default on Links
if do_default && is_external && cfg!(target_arch = "wasm32") { if do_default && is_external {
return; return;
} }