1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-04 06:38:28 +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.setState({ value: '' });
this.props.onGoToSeries(series.titleSlug); this.props.onGoToSeries(item.item.titleSlug);
} }
reset() { reset() {