瀏覽代碼

Adds missing "of"

main
Eric Amodio 4 年之前
父節點
當前提交
2a183127ba
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/views/nodes/branchTrackingStatusNode.ts

+ 1
- 1
src/views/nodes/branchTrackingStatusNode.ts 查看文件

@ -130,7 +130,7 @@ export class BranchTrackingStatusNode extends ViewNode implement
case 'ahead':
label = `${Strings.pluralize('commit', this.status.state.ahead)} ahead`;
if (!this.isReposView) {
label = `${this.root ? `${this.branch.name} is ` : ''}${label} ${this.status.upstream}`;
label = `${this.root ? `${this.branch.name} is ` : ''}${label} of ${this.status.upstream}`;
}
tooltip = `${label} of ${this.status.upstream}`;

Loading…
取消
儲存