Skip to content

Commit 61e7ff9

Browse files
committed
Changes to : to match commits view
1 parent 1a3ae6c commit 61e7ff9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/views/nodes/fileHistoryNode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/views/nodes/lineHistoryNode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)