Browse Source

Removes commit icon when hiding avatars

main
Eric Amodio 1 year ago
parent
commit
fbf28c0434
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/nodes/commitNode.ts

+ 1
- 1
src/views/nodes/commitNode.ts View File

@ -180,7 +180,7 @@ export class CommitNode extends ViewRefNode
? new ThemeIcon('arrow-up', new ThemeColor('gitlens.unpublishedCommitIconColor' satisfies Colors))
: this.view.config.avatars
? await this.commit.getAvatarUri({ defaultStyle: configuration.get('defaultGravatarsStyle') })
: new ThemeIcon('git-commit');
: undefined;
// item.tooltip = this.tooltip;
return item;

Loading…
Cancel
Save