Skip to content

Added double click to almost all components #1754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'dev' into doubleClick_event_component
  • Loading branch information
raheeliftikhar5 authored Jun 10, 2025
commit 1bc331a44372987cb52264a36081a680cd497b8b
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@ const MenuItem = React.memo(({ option, index, onMainEvent }: { option: any; inde
option.onEvent("click");
}

// Trigger the main component's event handler
if (onMainEvent) {
onMainEvent("click");
}
}
}, [option.disabled, option.onClick, option.onEvent, option.onDoubleClick]);
}, [option.disabled, option.onClick, option.onEvent, onMainEvent, option.onDoubleClick]);

return (
<MenuLinkWrapper>
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.