mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: Release Grab not working on Mobile search
This commit is contained in:
parent
c15643be39
commit
6ce9e5ceb9
1 changed files with 10 additions and 5 deletions
|
|
@ -52,12 +52,17 @@ class SearchIndexOverview extends Component {
|
||||||
//
|
//
|
||||||
// Listeners
|
// Listeners
|
||||||
|
|
||||||
onEditSeriesPress = () => {
|
onGrabPress = () => {
|
||||||
this.setState({ isEditSeriesModalOpen: true });
|
const {
|
||||||
};
|
guid,
|
||||||
|
indexerId,
|
||||||
|
onGrabPress
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
onEditSeriesModalClose = () => {
|
onGrabPress({
|
||||||
this.setState({ isEditSeriesModalOpen: false });
|
guid,
|
||||||
|
indexerId
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue