1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-25 01:06:30 +00: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) => {
return {
key: downloadClient.id,
value: downloadClient.name
value: downloadClient.name,
hint: `(${downloadClient.id})`
};
});