Show download client ID as hint in select options

(cherry picked from commit c0b17d9345367ab6500b7cca6bb70c1e3b930284)
pull/4587/head
Bogdan 3 months ago committed by servarr
parent 27723eb3ea
commit b0a75791db

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

Loading…
Cancel
Save