mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Hide Profile Delete if Used by List
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user