always show clear button in search box when focused
parent
c70736fe00
commit
122e15156a
|
@ -125,7 +125,7 @@ module.exports = React.createClass({
|
||||||
if (this.props.collapsed) {
|
if (this.props.collapsed) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
const clearButton = this.state.searchTerm.length > 0 ?
|
const clearButton = !this.state.blurred ?
|
||||||
(<AccessibleButton key="button"
|
(<AccessibleButton key="button"
|
||||||
className="mx_SearchBox_closeButton"
|
className="mx_SearchBox_closeButton"
|
||||||
onClick={ () => {this._clearSearch("button"); } }>
|
onClick={ () => {this._clearSearch("button"); } }>
|
||||||
|
|
Loading…
Reference in New Issue