fix(Toolbar): Fix toolbar not hiding on mobile
This commit is contained in:
parent
09af88088d
commit
9ee75038b6
|
@ -1179,8 +1179,10 @@ class Toolbox extends Component<Props> {
|
||||||
<div
|
<div
|
||||||
className = 'toolbox-content-wrapper'
|
className = 'toolbox-content-wrapper'
|
||||||
onFocus = { this._onTabIn }
|
onFocus = { this._onTabIn }
|
||||||
onMouseOut = { this._onMouseOut }
|
{ ...(_isMobile ? {} : {
|
||||||
onMouseOver = { this._onMouseOver }>
|
onMouseOut: this._onMouseOut,
|
||||||
|
onMouseOver: this._onMouseOver
|
||||||
|
}) }>
|
||||||
<DominantSpeakerName />
|
<DominantSpeakerName />
|
||||||
<div className = 'toolbox-content-items'>
|
<div className = 'toolbox-content-items'>
|
||||||
{mainMenuButtons.map(({ Content, key, ...rest }) => Content !== Separator && (
|
{mainMenuButtons.map(({ Content, key, ...rest }) => Content !== Separator && (
|
||||||
|
|
Loading…
Reference in New Issue