@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Owners - sort repositories alphabetically in path chooser

Summary: Fixes T6834. Without this asort() call, repositories are ordered by ID, which is arbitrary to the user. This sorts them alphabetically by callsign.

Test Plan: edited a package and saw repos sorted by call sign

Reviewers: epriestley, chad

Reviewed By: chad

Subscribers: Korvin, epriestley

Maniphest Tasks: T6834

Differential Revision: https://secure.phabricator.com/D11095

+1
+1
src/applications/owners/controller/PhabricatorOwnersEditController.php
··· 145 145 } 146 146 147 147 $repos = mpull($repos, 'getCallsign', 'getPHID'); 148 + asort($repos); 148 149 149 150 $template = new AphrontTypeaheadTemplateView(); 150 151 $template = $template->render();