浏览代码

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;

正在加载...
取消
保存