Skip to content

Commit c0ef3e4

Browse files
committed
git: fix sync statusbar
1 parent 01e466e commit c0ef3e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/git/src/statusbar.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ export class SyncStatusBar {
7070
}
7171

7272
const HEAD = this.model.HEAD;
73-
let icon = '$(sync)';
73+
let icon = '$(sync) ';
7474
let text = '';
7575

7676
if (HEAD && HEAD.name && HEAD.commit) {
7777
this.raw.color = '';
7878

7979
if (HEAD.upstream) {
8080
if (HEAD.ahead || HEAD.behind) {
81-
text += `'${HEAD.behind}${HEAD.ahead}'`;
81+
text += `${HEAD.behind}${HEAD.ahead}↑`;
8282
}
8383
this.raw.command = 'git.sync';
8484
} else {
85-
icon = '$(cloud-upload)';
85+
icon = '$(cloud-upload) ';
8686
this.raw.command = 'git.publish';
8787
}
8888
} else {

0 commit comments

Comments
 (0)