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