Skip to content

Commit

Permalink
NO-ISSUE: DMN Editor Boxed Expression Types help icon is not working …
Browse files Browse the repository at this point in the history
…as expected (apache#2392)
  • Loading branch information
danielzhe authored May 31, 2024
1 parent de12cf1 commit c9fd45e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ export function MenuItemWithHelp({
actions={
(isHovered || visibleHelp === menuItemHelp) && (
<MenuItemAction
onClick={() => setVisibleHelp(menuItemHelp)}
onClick={(e) => {
e.stopPropagation();
setVisibleHelp(menuItemHelp);
}}
icon={<HelpIcon aria-hidden />}
actionId={menuItemKey + "-help"}
aria-label={menuItemKey + "-help"}
Expand Down

0 comments on commit c9fd45e

Please sign in to comment.