Fix order of original/modified in Compare Selected (#225702)

fix #225441
pull/225720/head
Benjamin Christopher Simmonds 2024-08-15 16:27:59 +02:00 committed by GitHub
parent 51e599754e
commit 09cc4e79f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -204,8 +204,8 @@ CommandsRegistry.registerCommand({
if (resources.length === 2) {
return editorService.openEditor({
original: { resource: resources[1] },
modified: { resource: resources[0] },
original: { resource: resources[0] },
modified: { resource: resources[1] },
options: { pinned: true }
});
}