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
1 changed files with 2 additions and 2 deletions

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() {