mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
only hide x button when blurred && no more search term
This commit is contained in:
parent
ac0810ab55
commit
d64cd58e93
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ module.exports = React.createClass({
|
|||
if (this.props.collapsed) {
|
||||
return null;
|
||||
}
|
||||
const clearButton = !this.state.blurred ?
|
||||
const clearButton = (!this.state.blurred || this.state.searchTerm) ?
|
||||
(<AccessibleButton key="button"
|
||||
className="mx_SearchBox_closeButton"
|
||||
onClick={ () => {this._clearSearch("button"); } }>
|
||||
|
|
Loading…
Reference in a new issue