Skip to content

Commit d983fe6

Browse files
author
Eric Amodio
committed
Fixes bad encoding in title - ref microsoft#91377
1 parent 684e239 commit d983fe6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/git/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2357,7 +2357,7 @@ export class CommandCenter {
23572357
else if (item.previousRef === 'HEAD' && item.ref === '~') {
23582358
title = localize('git.title.index', '{0} (Index)', basename);
23592359
} else {
2360-
title = localize('git.title.diffRefs', '{0} ({1}) \u27f7 {0} ({2})', basename, item.shortPreviousRef, item.shortRef);
2360+
title = localize('git.title.diffRefs', '{0} ({1}) {0} ({2})', basename, item.shortPreviousRef, item.shortRef);
23612361
}
23622362

23632363
return commands.executeCommand('vscode.diff', toGitUri(uri, item.previousRef), item.ref === '' ? uri : toGitUri(uri, item.ref), title);

0 commit comments

Comments
 (0)