소스 검색

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

불러오는 중...
취소
저장