- Are you sure you want to perform mass movie search?
+ Are you sure you want to perform mass movie search for {this.props.items.length} movies?
This cannot be cancelled once started without restarting Radarr.
diff --git a/frontend/src/Movie/Index/MovieIndexConnector.js b/frontend/src/Movie/Index/MovieIndexConnector.js
index 0ac169a73..d2c6c1303 100644
--- a/frontend/src/Movie/Index/MovieIndexConnector.js
+++ b/frontend/src/Movie/Index/MovieIndexConnector.js
@@ -81,9 +81,10 @@ function createMapDispatchToProps(dispatch, props) {
}));
},
- onSearchPress(command) {
+ onSearchPress(command, items) {
dispatch(executeCommand({
- name: command
+ name: command,
+ movieIds: items
}));
}
};