File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export class FileHistoryNode
5858 }
5959
6060 async getChildren ( ) : Promise < ViewNode [ ] > {
61- this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } \u2022 ` : '' } ${ this . label } ${
61+ this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } : ` : '' } ${ this . label } ${
6262 this . parent instanceof FileHistoryTrackerNode && ! this . parent . followingEditor ? ' (pinned)' : ''
6363 } `;
6464
@@ -155,7 +155,7 @@ export class FileHistoryNode
155155 this . uri . sha == null ? '' : `\n\n${ this . uri . sha } `
156156 } `;
157157
158- this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } \u2022 ` : '' } ${ label } ${
158+ this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } : ` : '' } ${ label } ${
159159 this . parent instanceof FileHistoryTrackerNode && ! this . parent . followingEditor ? ' (pinned)' : ''
160160 } `;
161161
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export class LineHistoryNode
6464 }
6565
6666 async getChildren ( ) : Promise < ViewNode [ ] > {
67- this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } \u2022 ` : '' } ${ this . label } ${
67+ this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } : ` : '' } ${ this . label } ${
6868 this . parent instanceof LineHistoryTrackerNode && ! this . parent . followingEditor ? ' (pinned)' : ''
6969 } `;
7070
@@ -169,7 +169,7 @@ export class LineHistoryNode
169169 this . uri . sha == null ? '' : `\n\n${ this . uri . sha } `
170170 } `;
171171
172- this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } \u2022 ` : '' } ${ label } ${
172+ this . view . description = `${ this . view . groupedLabel ? `${ this . view . groupedLabel } : ` : '' } ${ label } ${
173173 this . parent instanceof LineHistoryTrackerNode && ! this . parent . followingEditor ? ' (pinned)' : ''
174174 } `;
175175
You can’t perform that action at this time.
0 commit comments