Skip to content

Commit

Permalink
Show download client ID as hint in select options
Browse files Browse the repository at this point in the history
(cherry picked from commit c0b17d9345367ab6500b7cca6bb70c1e3b930284)
  • Loading branch information
mynameisbogdan committed Feb 14, 2024
1 parent 479e8cc commit 0431b25
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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})`
};
});

Expand Down

0 comments on commit 0431b25

Please sign in to comment.