1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00

Fixed: Changing series view

This commit is contained in:
Mark McDowall 2019-01-18 11:39:39 -08:00
parent ae2efbc116
commit fb67e123f4

View File

@ -124,7 +124,7 @@ class SeriesIndexConnector extends Component {
onViewSelect = (view) => {
// Reset the scroll position before changing the view
this.setState({ scrollTop: 0 }, () => {
this.props.dispatchSetSeriesView({ view });
this.props.dispatchSetSeriesView(view);
});
}