Fix Search Table Options Modal

pull/6/head
Qstick 4 years ago
parent 5f876ed441
commit d9892cffd6

@ -1,11 +1,11 @@
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { setMovieTableOption } from 'Store/Actions/indexerIndexActions'; import { setReleasesTableOption } from 'Store/Actions/releaseActions';
import SearchIndexHeader from './SearchIndexHeader'; import SearchIndexHeader from './SearchIndexHeader';
function createMapDispatchToProps(dispatch, props) { function createMapDispatchToProps(dispatch, props) {
return { return {
onTableOptionChange(payload) { onTableOptionChange(payload) {
dispatch(setMovieTableOption(payload)); dispatch(setReleasesTableOption(payload));
} }
}; };
} }

Loading…
Cancel
Save