Merge pull request #1571 from matrix-org/t3chguy/class-warning-thing
Fixes React warning
This commit is contained in:
commit
3fd5937687
1 changed files with 3 additions and 5 deletions
|
@ -26,11 +26,9 @@ class MenuOption extends React.Component {
|
|||
this._onClick = this._onClick.bind(this);
|
||||
}
|
||||
|
||||
getDefaultProps() {
|
||||
return {
|
||||
disabled: false,
|
||||
};
|
||||
}
|
||||
static defaultProps = {
|
||||
disabled: false,
|
||||
};
|
||||
|
||||
_onMouseEnter() {
|
||||
this.props.onMouseEnter(this.props.dropdownKey);
|
||||
|
|
Loading…
Reference in a new issue