ソースを参照

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}^`,
});
}

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