We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 798da62 commit 25db419Copy full SHA for 25db419
1 file changed
src/view/commentDecorationProvider.ts
@@ -42,12 +42,12 @@ export class CommentDecorationProvider extends TreeDecorationProvider {
42
}
43
});
44
if (hasComment) {
45
- return {
+ const decoration: vscode.FileDecoration2 = {
46
propagate: false,
47
- tooltip: 'Commented',
48
- // allow-any-unicode-next-line
49
- badge: '💬',
+ tooltip: vscode.l10n.t('Commented'),
+ badge: new vscode.ThemeIcon('comment'),
50
};
+ return decoration as vscode.FileDecoration;
51
52
53
return undefined;
0 commit comments