1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Reset truncation when the text box is cleared

This commit is contained in:
Kegan Dougal
2016-02-05 16:58:37 +00:00
parent 5dafe1f4a6
commit 7ccce1dc91

View File

@@ -81,6 +81,8 @@ var SearchableEntityList = React.createClass({
var q = ev.target.value;
this.setState({
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)
}, () => {
// invoke the callback AFTER we've flushed the new state. We need to