Skip to content

Commit

Permalink
IBX-4277: [UDW] Tooltips from left menu aren't visible
Browse files Browse the repository at this point in the history
  • Loading branch information
GrabowskiM committed Nov 9, 2022
1 parent e5de669 commit c4e21b4
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ const TabSelector = () => {
});

return (
<div className={className} key={tab.id} onClick={onClick} title={tab.label}>
<div
className={className}
key={tab.id}
onClick={onClick}
title={tab.label}
data-tooltip-container-selector=".c-udw-tab"
>
<Icon customPath={tab.icon} extraClasses="ibexa-icon--small-medium" />
</div>
);
Expand Down

0 comments on commit c4e21b4

Please sign in to comment.