The dropdown for project names uses locale-specific comparison when sorting the projects, which can lead to weird results (projects never showing up and being unselectable). For example, on Wikimedia Phabricator, using Opera 12, with partially Polish, partially English system and browser locale, I can't select the "VisualEditor" project.
That's because projects "VisualEditor-ContentEditable", "VisualEditor-DataModel", "VisualEditor-EditingTools", "VisualEditor-Initialisation" (and a few others like this) exist, because the dropdown is limited to five items, and because, for some reason, "visualeditor VisualEditor".localeCompare("visualeditor-contenteditable VisualEditor-ContentEditable") yields 1 (even thought "visualeditor VisualEditor" < "visualeditor-contenteditable VisualEditor-ContentEditable" is true).
Using localeCompare seems incorrect to me; the strings are not in my locale (whatever that locale might be), they are in English. It would probably be more correct to just compare with < and >.