only capture enter if something was selected in completions

This commit is contained in:
Bruno Windels 2019-05-31 15:05:09 +02:00
parent 512c9b2ac8
commit 716719187d
2 changed files with 5 additions and 1 deletions

View file

@ -162,6 +162,10 @@ export default class Autocomplete extends React.Component {
});
}
hasSelection(): bool {
return this.countCompletions() > 0 && this.state.selectionOffset !== 0;
}
countCompletions(): number {
return this.state.completionList.length;
}