Skip to content

Commit 9113cd8

Browse files
committed
Sorts repos in quick pick
1 parent bc86b0e commit 9113cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quickpicks/repositoriesQuickPick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class RepositoriesQuickPick {
2828
goBackCommand?: CommandQuickPickItem
2929
): Promise<RepositoryQuickPickItem | CommandQuickPickItem | undefined> {
3030
const items = [
31-
...Iterables.map(await Container.git.getRepositories(), r => new RepositoryQuickPickItem(r))
31+
...Iterables.map(await Container.git.getOrderedRepositories(), r => new RepositoryQuickPickItem(r))
3232
] as (RepositoryQuickPickItem | CommandQuickPickItem)[];
3333

3434
if (goBackCommand !== undefined) {

0 commit comments

Comments
 (0)