Przeglądaj źródła

Adds missing "of"

main
Eric Amodio 4 lat temu
rodzic
commit
2a183127ba
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/views/nodes/branchTrackingStatusNode.ts

+ 1
- 1
src/views/nodes/branchTrackingStatusNode.ts Wyświetl plik

@ -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}`;

Ładowanie…
Anuluj
Zapisz