Skip to content

Commit

Permalink
Sorts repos in quick pick
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jan 30, 2019
1 parent bc86b0e commit 9113cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quickpicks/repositoriesQuickPick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class RepositoriesQuickPick {
goBackCommand?: CommandQuickPickItem
): Promise<RepositoryQuickPickItem | CommandQuickPickItem | undefined> {
const items = [
...Iterables.map(await Container.git.getRepositories(), r => new RepositoryQuickPickItem(r))
...Iterables.map(await Container.git.getOrderedRepositories(), r => new RepositoryQuickPickItem(r))
] as (RepositoryQuickPickItem | CommandQuickPickItem)[];

if (goBackCommand !== undefined) {
Expand Down

0 comments on commit 9113cd8

Please sign in to comment.