|
|
|
@ -66,7 +66,8 @@ class CollectionFooter extends Component {
|
|
|
|
|
monitor,
|
|
|
|
|
monitored,
|
|
|
|
|
qualityProfileId,
|
|
|
|
|
minimumAvailability
|
|
|
|
|
minimumAvailability,
|
|
|
|
|
rootFolderPath
|
|
|
|
|
} = this.state;
|
|
|
|
|
|
|
|
|
|
const changes = {};
|
|
|
|
@ -87,6 +88,10 @@ class CollectionFooter extends Component {
|
|
|
|
|
changes.minimumAvailability = minimumAvailability;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rootFolderPath !== NO_CHANGE) {
|
|
|
|
|
changes.rootFolderPath = rootFolderPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.props.onUpdateSelectedPress(changes);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|