Project drop down menu sorting is broken

Summary

The top left project menu is extremely difficult to use because it isn't sorted.

As we have continued to add clients and repositories for those clients, this menu has become more difficult to use since it isn't sorted alphabetically. We can't actually tell how the sorting works since it seems to be different every time. My guess is that it's generated with a JavaScript object which is why the order varies so much.

What is the expected correct behavior?

Sort the list by alphanumeric.

Relevant logs and/or screenshots

Project_Drop_Down_Menu

Possible fixes

This is extremely easy to fix. Simply call sort() on the list of repositories that's being used to render this list. At worst it will be like this:

list.sort((a,b) => a.name > b.name ? 1 : a.name < b.name ? -1 : 0))
Assignee Loading
Time tracking Loading