Skip to content

Commit d6a5b48

Browse files
committed
Fixes issue with Open Changes view command
1 parent eb6a00e commit d6a5b48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/views/viewCommands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,8 @@ export class ViewCommands implements Disposable {
14191419
void executeCommand<DiffWithCommandArgs>(command.command, args);
14201420
break;
14211421
}
1422-
case 'gitlens.diffWithPrevious' satisfies GlCommands: {
1422+
case 'gitlens.diffWithPrevious' satisfies GlCommands:
1423+
case 'gitlens.diffWithPrevious:views' satisfies GlCommands: {
14231424
const [, args] = command.arguments as [Uri, DiffWithPreviousCommandArgs];
14241425
args.showOptions!.preview = false;
14251426
void executeEditorCommand<DiffWithPreviousCommandArgs>(

0 commit comments

Comments
 (0)