1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04: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
@@ -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})`
};
});