Skip to content

Commit a2efac4

Browse files
committed
Fixes the remotes view count
1 parent f60d241 commit a2efac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/remotesView.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export class RemotesViewNode extends RepositoriesSubscribeableNode<RemotesView,
8787
}
8888

8989
if (this.view.grouped) {
90-
this.view.description = `${this.view.name.toLocaleLowerCase()} (${remotes.values.length})`;
90+
this.view.description = `${this.view.name.toLocaleLowerCase()} (${remotes.length})`;
9191
} else {
92-
this.view.description = `(${remotes.values.length})`;
92+
this.view.description = `(${remotes.length})`;
9393
}
9494

9595
return child.getChildren();

0 commit comments

Comments
 (0)