Git - add avatar to graph hover (#238246)

This commit is contained in:
Ladislau Szomoru
2025-01-19 21:30:42 +01:00
committed by GitHub
parent 58145651f7
commit d64829f052
8 changed files with 38 additions and 11 deletions

View File

@@ -132,7 +132,7 @@ export class GitHubSourceControlHistoryItemDetailsProvider implements SourceCont
// Cache hit
if (avatarUrl) {
// Add avatar for each commit
q.forEach(({ hash }) => results.set(hash, avatarUrl));
q.forEach(({ hash }) => results.set(hash, `${avatarUrl}&s=${query.size}`));
return;
}