We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e466e commit c0ef3e4Copy full SHA for c0ef3e4
1 file changed
extensions/git/src/statusbar.ts
@@ -70,19 +70,19 @@ export class SyncStatusBar {
70
}
71
72
const HEAD = this.model.HEAD;
73
- let icon = '$(sync)';
+ let icon = '$(sync) ';
74
let text = '';
75
76
if (HEAD && HEAD.name && HEAD.commit) {
77
this.raw.color = '';
78
79
if (HEAD.upstream) {
80
if (HEAD.ahead || HEAD.behind) {
81
- text += `'${HEAD.behind}↓ ${HEAD.ahead}↑'`;
+ text += `${HEAD.behind}↓ ${HEAD.ahead}↑`;
82
83
this.raw.command = 'git.sync';
84
} else {
85
- icon = '$(cloud-upload)';
+ icon = '$(cloud-upload) ';
86
this.raw.command = 'git.publish';
87
88
0 commit comments