always show clear button in search box when focused
This commit is contained in:
parent
4ae4e68967
commit
7c97078764
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ module.exports = createReactClass({
|
||||||
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 a new issue