Skip to content

Commit 311c9ad

Browse files
Fix: sync main
1 parent 7958e47 commit 311c9ad

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/views/pullrequest/PullRequestsOverviewExplorer.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ export class PullRequestsOverviewExplorer extends BitbucketExplorer {
5151
}
5252

5353
override async refresh(): Promise<void> {
54-
if (!Container.onlineDetector.isOnline()) {
55-
return;
56-
}
57-
5854
if (this.treeDataProvider) {
5955
this.treeDataProvider.refresh();
6056
}

src/views/pullrequest/pullRequestsOverviewSectionNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class PullRequestsOverviewSectionNode extends AbstractBaseNode {
3030
}
3131

3232
private createChildren(): void {
33-
this.children = this.pullRequests.map((pr) => new PullRequestTitlesNode(pr, true, this));
33+
this.children = this.pullRequests.map((pr) => new PullRequestTitlesNode(pr, true));
3434
}
3535

3636
getTreeItem(): vscode.TreeItem {

0 commit comments

Comments
 (0)