浏览代码

Ensures sorted remotes for autolinks

main
Eric Amodio 2 年前
父节点
当前提交
d96b65e92d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/views/nodes/commitNode.ts

+ 1
- 1
src/views/nodes/commitNode.ts 查看文件

@ -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) {

正在加载...
取消
保存