1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-31 03:11:07 +02:00

Fix route to series details from search input

This commit is contained in:
Mark McDowall 2019-02-28 20:00:08 -08:00
parent 22778091f9
commit ebf4f17f17

View File

@ -90,9 +90,9 @@ class SeriesSearchInput extends Component {
);
}
goToSeries(series) {
goToSeries(item) {
this.setState({ value: '' });
this.props.onGoToSeries(series.titleSlug);
this.props.onGoToSeries(item.item.titleSlug);
}
reset() {