1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

New: Movie Editor in Movie Index (#3606)

* Fixed: Movie Editor in Movie Index

* Fixed: CSS Style Issues

* Fixed: Ensure only items shown are selected

* Fixed: Cleanup and Rename from Editor
This commit is contained in:
Qstick
2019-07-12 20:40:37 -04:00
committed by GitHub
parent b8f7ca0749
commit a20222fbef
78 changed files with 823 additions and 962 deletions
@@ -29,21 +29,21 @@ function createMapStateToProps() {
(state) => state.movies,
createMovieSelector(),
createIsPathChangingSelector(),
(seriesState, movie, isPathChanging) => {
(moviesState, movie, isPathChanging) => {
const {
isSaving,
saveError,
pendingChanges
} = seriesState;
} = moviesState;
const seriesSettings = _.pick(movie, [
const movieSettings = _.pick(movie, [
'monitored',
'qualityProfileId',
'path',
'tags'
]);
const settings = selectSettings(seriesSettings, pendingChanges, saveError);
const settings = selectSettings(movieSettings, pendingChanges, saveError);
return {
title: movie.title,
@@ -97,7 +97,7 @@ class EditMovieModalContentConnector extends Component {
{...this.props}
onInputChange={this.onInputChange}
onSavePress={this.onSavePress}
onMoveSeriesPress={this.onMoveSeriesPress}
onMoveMoviePress={this.onMoveMoviePress}
/>
);
}