We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17bca28 commit ab724b2Copy full SHA for ab724b2
src/view/prsTreeDataProvider.ts
@@ -268,11 +268,12 @@ export class PullRequestsTreeDataProvider extends Disposable implements vscode.T
268
}
269
270
this._initialized = true;
271
- this._register(
272
- this._reposManager.onDidChangeState(() => {
273
- this.refreshAll();
274
- }),
275
- );
+ this._register(this._reposManager.onDidChangeState(() => {
+ this.refreshAll();
+ }));
+ this._register(this._reposManager.onDidLoadAnyRepositories(() => {
276
277
278
for (const model of reviewModels) {
279
this._register(model.onDidChangeLocalFileChanges(_ => { this.refreshAllQueryResults(); }));
0 commit comments