mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 04:03:04 +00:00
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:
parent
21465390f8
commit
e7e624f05e
1 changed files with 3 additions and 3 deletions
|
@ -198,13 +198,13 @@ pub fn Link(props: LinkProps) -> Element {
|
|||
if !event.modifiers().is_empty() {
|
||||
return;
|
||||
}
|
||||
// only handle left clicks
|
||||
// Only handle left clicks
|
||||
if event.trigger_button() != Some(dioxus_elements::input_data::MouseButton::Primary) {
|
||||
return;
|
||||
}
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue