Skip to content

Commit

Permalink
fix(designer): Make Info Bubbles in search accessible by keyboard nav… (
Browse files Browse the repository at this point in the history
#4180)

fix(designer): Make Info Bubbles in search accessible by keyboard navigation
  • Loading branch information
hartra344 committed Feb 13, 2024
1 parent 22677d9 commit 02c6d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/infoDot/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const InfoDot = (props: any) => {

return (
<TooltipHost tooltipProps={tooltipProps}>
<img className="msla-info-dot" alt={alt} src={InformationImage} style={style} />
<img className="msla-info-dot" alt={alt} src={InformationImage} style={style} tabIndex={0} />
</TooltipHost>
);
};

0 comments on commit 02c6d5a

Please sign in to comment.