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
1 changed files with 2 additions and 1 deletions

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})`
};
});