mirror of https://github.com/vector-im/riot-web
Reset truncation when the text box is cleared
parent
5dafe1f4a6
commit
7ccce1dc91
|
@ -81,6 +81,8 @@ var SearchableEntityList = React.createClass({
|
||||||
var q = ev.target.value;
|
var q = ev.target.value;
|
||||||
this.setState({
|
this.setState({
|
||||||
query: q,
|
query: q,
|
||||||
|
// reset truncation if they back out the entire text
|
||||||
|
truncateAt: (q.length === 0 ? this.props.truncateAt : this.state.truncateAt),
|
||||||
results: this.getSearchResults(q, this.props.entities)
|
results: this.getSearchResults(q, this.props.entities)
|
||||||
}, () => {
|
}, () => {
|
||||||
// invoke the callback AFTER we've flushed the new state. We need to
|
// invoke the callback AFTER we've flushed the new state. We need to
|
||||||
|
|
Loading…
Reference in New Issue