Browse Source

Adds missing "of"

main
Eric Amodio 4 years ago
parent
commit
2a183127ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/nodes/branchTrackingStatusNode.ts

+ 1
- 1
src/views/nodes/branchTrackingStatusNode.ts View File

@ -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…
Cancel
Save