소스 검색

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio 5 년 전
부모
커밋
d9a3b0e8cd
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts 파일 보기

@ -504,6 +504,10 @@ export class ViewCommands {
private exploreRepoRevision(node: ViewRefNode, options: { openInNewWindow?: boolean } = {}) {
if (!(node instanceof ViewRefNode)) return;
if (options == null) {
options = {};
}
const uri = toGitLensFSUri(node.ref, node.repoPath);
const gitUri = GitUri.fromRevisionUri(uri);

불러오는 중...
취소
저장