From c884e6abe67be5437146797caff86863577ce21c Mon Sep 17 00:00:00 2001 From: Keane Nguyen Date: Tue, 1 Apr 2025 13:42:41 -0400 Subject: [PATCH] Set sourceControl.count to only include working copy changes --- src/repository.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/repository.ts b/src/repository.ts index b323f83..79bf0f4 100644 --- a/src/repository.ts +++ b/src/repository.ts @@ -211,6 +211,7 @@ class RepositorySourceControlManager { }; }, ); + this.sourceControl.count = status.fileStatuses.length; const updatedGroups: vscode.SourceControlResourceGroup[] = []; for (const group of this.parentResourceGroups) {