mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
Fixes incorrect file selection on commit file details
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user