|
@ -53,7 +53,9 @@ export class ContributorsViewNode extends RepositoriesSubscribeableNode |
|
|
if (this.children == null) { |
|
|
if (this.children == null) { |
|
|
const repositories = this.view.container.git.openRepositories; |
|
|
const repositories = this.view.container.git.openRepositories; |
|
|
if (repositories.length === 0) { |
|
|
if (repositories.length === 0) { |
|
|
this.view.message = 'No contributors could be found.'; |
|
|
|
|
|
|
|
|
this.view.message = this.view.container.git.isDiscoveringRepositories |
|
|
|
|
|
? 'Loading contributors...' |
|
|
|
|
|
: 'No contributors could be found.'; |
|
|
|
|
|
|
|
|
return []; |
|
|
return []; |
|
|
} |
|
|
} |
|
|