Browse Source

Ensures sorted remotes for autolinks

main
Eric Amodio 2 years ago
parent
commit
d96b65e92d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/nodes/commitNode.ts

+ 1
- 1
src/views/nodes/commitNode.ts View File

@ -130,7 +130,7 @@ export class CommitNode extends ViewRefNode
}
private async getTooltip() {
const remotes = await this.view.container.git.getRemotesWithProviders(this.commit.repoPath);
const remotes = await this.view.container.git.getRemotesWithProviders(this.commit.repoPath, { sort: true });
const remote = await this.view.container.git.getRichRemoteProvider(remotes);
if (this.commit.message == null) {

Loading…
Cancel
Save