|
async getChildren(): Promise<TreeNode[]> { |
|
await this._reviewManager.refreshSinceReview; |
|
if (!this._filesCategoryNode || !this._commitsCategoryNode) { |
The reference to ReviewManager in RepositoryChangesNode is only used to show progress. Ideally, we wouldn't have this reference just for showing progress. We should see if there's another way we can show progress.
vscode-pull-request-github/src/view/treeNodes/repositoryChangesNode.ts
Lines 65 to 67 in fa65f16
The reference to
ReviewManagerinRepositoryChangesNodeis only used to show progress. Ideally, we wouldn't have this reference just for showing progress. We should see if there's another way we can show progress.