desktop-toolbar

Summary: _typescript_

Reviewed By: danielbuechele

Differential Revision: D17180448

fbshipit-source-id: 67459523fb7047c0580b5b7b3f116397e0ad9c42
This commit is contained in:
Chaiwat Ekkaewnumchai
2019-09-05 03:00:28 -07:00
committed by Facebook Github Bot
parent be3772bd16
commit d7e3514d9b

View File

@@ -107,7 +107,7 @@ export class DesktopDropdownItem extends React.Component<
{...props}
onMouseEnter={this.onMouseEnter}
onMouseLeave={this.onMouseLeave}
onClick={typeof onClick === 'function' && this.onClick}>
onClick={typeof onClick === 'function' ? this.onClick : undefined}>
{children}
{hovered && typeof onHover === 'function' && onHover()}
</DesktopDropdownItemContainer>