1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Table options in page toolbar in addition to table header

This commit is contained in:
Mark McDowall
2019-01-09 18:57:18 -08:00
parent 21a92b62fd
commit 3b565d8bb1
9 changed files with 126 additions and 53 deletions
@@ -117,6 +117,7 @@ class SeriesSearchInput extends Component {
if (!suggestions.length || highlightedSectionIndex) {
this.props.onGoToAddNewSeries(value);
this._autosuggest.input.blur();
this.reset();
return;
}
@@ -129,6 +130,9 @@ class SeriesSearchInput extends Component {
} else {
this.goToSeries(suggestions[highlightedSuggestionIndex]);
}
this._autosuggest.input.blur();
this.reset();
}
onBlur = () => {