Explorar el Código

Ensures sorted remotes for autolinks

main
Eric Amodio hace 2 años
padre
commit
d96b65e92d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/views/nodes/commitNode.ts

+ 1
- 1
src/views/nodes/commitNode.ts Ver fichero

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

Cargando…
Cancelar
Guardar