ソースを参照

Fixes show in view action when uncommitted

main
Eric Amodio 5年前
コミット
4c1cef3eff
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/codelens/codeLensProvider.ts

+ 1
- 1
src/codelens/codeLensProvider.ts ファイルの表示

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

読み込み中…
キャンセル
保存