From 2a183127ba31efcf143e69039f82ab1a6dfce8b2 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 4 Sep 2020 03:48:53 -0400 Subject: [PATCH] Adds missing "of" --- src/views/nodes/branchTrackingStatusNode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/nodes/branchTrackingStatusNode.ts b/src/views/nodes/branchTrackingStatusNode.ts index c59607b..5a3988b 100644 --- a/src/views/nodes/branchTrackingStatusNode.ts +++ b/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}`;