always show clear button in search box when focused

pull/21833/head
Bruno Windels 2019-09-12 11:12:06 +02:00 committed by David Baker
parent c70736fe00
commit 122e15156a
1 changed files with 1 additions and 1 deletions

View File

@ -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"); } }>