소스 검색

Fixes open [previous] changes w/ working for comparisons

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

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

@ -1180,7 +1180,7 @@ export class ViewCommands {
return CommitActions.openChangesWithWorking(node.file, {
repoPath: node.repoPath,
ref: node.ref.ref,
ref: node.is('results-file') ? node.ref2 : node.ref.ref,
});
}
@ -1190,7 +1190,7 @@ export class ViewCommands {
return CommitActions.openChangesWithWorking(node.file, {
repoPath: node.repoPath,
ref: `${node.ref.ref}^`,
ref: node.is('results-file') ? node.ref1 : `${node.ref.ref}^`,
});
}

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