Skip to content

Commit 25db419

Browse files
authored
Comment icon in PR tree has black outline (#6554)
Fixes #3054
1 parent 798da62 commit 25db419

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/view/commentDecorationProvider.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ export class CommentDecorationProvider extends TreeDecorationProvider {
4242
}
4343
});
4444
if (hasComment) {
45-
return {
45+
const decoration: vscode.FileDecoration2 = {
4646
propagate: false,
47-
tooltip: 'Commented',
48-
// allow-any-unicode-next-line
49-
badge: '💬',
47+
tooltip: vscode.l10n.t('Commented'),
48+
badge: new vscode.ThemeIcon('comment'),
5049
};
50+
return decoration as vscode.FileDecoration;
5151
}
5252
}
5353
return undefined;

0 commit comments

Comments
 (0)