We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f70133 commit 0f4c591Copy full SHA for 0f4c591
src/views/nodes/contributorNode.ts
@@ -25,7 +25,7 @@ export class ContributorNode extends ViewNode<RepositoriesView> implements Pagea
25
async getChildren(): Promise<ViewNode[]> {
26
const log = await Container.git.getLog(this.uri.repoPath!, {
27
maxCount: this.maxCount !== undefined ? this.maxCount : this.view.config.defaultItemLimit,
28
- authors: [this.contributor.name]
+ authors: [`^${this.contributor.name} <${this.contributor.email}>$`]
29
});
30
if (log === undefined) return [new MessageNode(this.view, this, 'No commits could be found.')];
31
0 commit comments