Fix library tab tooltip always staying on top

This commit is contained in:
Martynas Bagdonas 2022-05-31 15:37:30 +03:00
parent d12f3eda61
commit 67700f8a2c

View file

@ -302,7 +302,10 @@ const TabBar = forwardRef(function (props, ref) {
onWheel={handleWheel} onWheel={handleWheel}
> >
<div className="pinned-tabs"> <div className="pinned-tabs">
<div className="tabs"> <div
className="tabs"
onMouseOut={handleTabBarMouseOut}
>
{tabs.length ? renderTab(tabs[0], 0) : null} {tabs.length ? renderTab(tabs[0], 0) : null}
</div> </div>
</div> </div>