Skip to content

Commit

Permalink
Comment icon in PR tree has black outline (#6554)
Browse files Browse the repository at this point in the history
Fixes #3054
  • Loading branch information
alexr00 authored Dec 17, 2024
1 parent 798da62 commit 25db419
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/view/commentDecorationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ export class CommentDecorationProvider extends TreeDecorationProvider {
}
});
if (hasComment) {
return {
const decoration: vscode.FileDecoration2 = {
propagate: false,
tooltip: 'Commented',
// allow-any-unicode-next-line
badge: '💬',
tooltip: vscode.l10n.t('Commented'),
badge: new vscode.ThemeIcon('comment'),
};
return decoration as vscode.FileDecoration;
}
}
return undefined;
Expand Down

0 comments on commit 25db419

Please sign in to comment.