Fixed: Release Grab not working on Mobile search

This commit is contained in:
Qstick
2022-12-30 18:28:55 -06:00
parent c15643be39
commit 6ce9e5ceb9

View File

@@ -52,12 +52,17 @@ class SearchIndexOverview extends Component {
//
// Listeners
onEditSeriesPress = () => {
this.setState({ isEditSeriesModalOpen: true });
};
onGrabPress = () => {
const {
guid,
indexerId,
onGrabPress
} = this.props;
onEditSeriesModalClose = () => {
this.setState({ isEditSeriesModalOpen: false });
onGrabPress({
guid,
indexerId
});
};
//