Quellcode durchsuchen

Adds missing "of"

main
Eric Amodio vor 4 Jahren
Ursprung
Commit
2a183127ba
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/views/nodes/branchTrackingStatusNode.ts

+ 1
- 1
src/views/nodes/branchTrackingStatusNode.ts Datei anzeigen

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

Laden…
Abbrechen
Speichern