1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-10 12:08:03 +02:00

Show download client ID as hint in select options

This commit is contained in:
Bogdan 2024-02-07 10:05:01 +02:00 committed by Mark McDowall
parent 84e657482d
commit c0b17d9345

View File

@ -26,7 +26,8 @@ function createMapStateToProps() {
const values = _.map(filteredItems.sort(sortByName), (downloadClient) => { const values = _.map(filteredItems.sort(sortByName), (downloadClient) => {
return { return {
key: downloadClient.id, key: downloadClient.id,
value: downloadClient.name value: downloadClient.name,
hint: `(${downloadClient.id})`
}; };
}); });