Fix library tab tooltip always staying on top
This commit is contained in:
parent
b1c2b9e005
commit
266ea99a77
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue