Ver código fonte

Fixes show in view action when uncommitted

main
Eric Amodio 5 anos atrás
pai
commit
4c1cef3eff
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/codelens/codeLensProvider.ts

+ 1
- 1
src/codelens/codeLensProvider.ts Ver arquivo

@ -613,7 +613,7 @@ export class GitCodeLensProvider implements CodeLensProvider {
};
lens.command = {
title: title,
command: Commands.ShowCommitsInView,
command: refs.length === 0 ? '' : Commands.ShowCommitsInView,
arguments: [commandArgs]
};
return lens;

Carregando…
Cancelar
Salvar