mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Hide Profile Delete if Used by List
This commit is contained in:
parent
1a3e0a3163
commit
9ae411802d
@ -6,12 +6,17 @@ function createProfileInUseSelector(profileProp) {
|
|||||||
return createSelector(
|
return createSelector(
|
||||||
(state, { id }) => id,
|
(state, { id }) => id,
|
||||||
createAllMoviesSelector(),
|
createAllMoviesSelector(),
|
||||||
(id, movies) => {
|
(state) => state.settings.netImports.items,
|
||||||
|
(id, movies, lists) => {
|
||||||
if (!id) {
|
if (!id) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return _.some(movies, { [profileProp]: id });
|
if (_.some(movies, { [profileProp]: id }) || _.some(lists, { [profileProp]: id })) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user