ソースを参照

Fixes incorrect file selection on commit file details

main
Eric Amodio 7年前
コミット
83fff1590d
1個のファイルの変更5行の追加1行の削除
  1. +5
    -1
      src/commands/showQuickCommitFileDetails.ts

+ 5
- 1
src/commands/showQuickCommitFileDetails.ts ファイルの表示

@ -51,7 +51,11 @@ export class ShowQuickCommitFileDetailsCommand extends ActiveEditorCachedCommand
}
try {
if (args.commit === undefined || (args.commit.type !== 'file' && args.commit.type !== 'stash')) {
if (args.commit === undefined || args.commit.type !== 'file') {
if (args.commit !== undefined) {
workingFileName = undefined;
}
if (args.fileLog !== undefined) {
args.commit = args.fileLog.commits.get(args.sha!);
// If we can't find the commit, kill the fileLog

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