Procházet zdrojové kódy

Fixes show in view action when uncommitted

main
Eric Amodio před 5 roky
rodič
revize
4c1cef3eff
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/codelens/codeLensProvider.ts

+ 1
- 1
src/codelens/codeLensProvider.ts Zobrazit soubor

@ -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;

Načítá se…
Zrušit
Uložit