Fix library tab tooltip always staying on top

This commit is contained in:
Martynas Bagdonas 2022-05-31 15:37:30 +03:00 committed by Dan Stillman
parent b1c2b9e005
commit 266ea99a77

View file

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