Skip to content

Commit 9d2fff2

Browse files
committed
Fixes html encoding issues
1 parent b1a5a53 commit 9d2fff2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1616
### Fixed
1717

1818
- Fixes [#574](https://github.com/eamodio/vscode-gitlens/issues/574) — Apply Changes not working because of whitespace conflicts
19-
- Fixes html encoding issues with the _Search Commits_ view empty state
19+
- Fixes html encoding issues with the empty state of the _Compare_ and _Search Commits_ views
2020

2121
## [9.1.0] - 2018-12-12
2222

src/views/nodes/comparePickerNode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class ComparePickerNode extends ViewNode<CompareView> {
3434
let item;
3535
if (selectedRef === undefined) {
3636
item = new TreeItem(
37-
`Compare &lt;branch, tag, or ref&gt; with &lt;branch, tag, or ref&gt;${repository}`,
37+
`Compare <branch, tag, or ref> with <branch, tag, or ref>${repository}`,
3838
TreeItemCollapsibleState.None
3939
);
4040
item.contextValue = ResourceType.ComparePicker;
@@ -46,7 +46,7 @@ export class ComparePickerNode extends ViewNode<CompareView> {
4646
}
4747
else {
4848
item = new TreeItem(
49-
`Compare ${selectedRef.label} with &lt;branch, tag, or ref&gt;${repository}`,
49+
`Compare ${selectedRef.label} with <branch, tag, or ref>${repository}`,
5050
TreeItemCollapsibleState.None
5151
);
5252
item.contextValue = ResourceType.ComparePickerWithRef;

0 commit comments

Comments
 (0)