소스 검색

Fixes #2359 duplicate avatar in interactive rebase

main
Keith Daulton 2 년 전
부모
커밋
94cac8c012
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/webviews/apps/rebase/rebase.ts

+ 1
- 0
CHANGELOG.md 파일 보기

@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#2354](https://github.com/gitkraken/vscode-gitlens/issues/2354) - 'GitLens: Compare working three with...' Not able to select branch using keyboard
- Fixes [#2359](https://github.com/gitkraken/vscode-gitlens/issues/2359) - rebase view shows 2 user icons even when they're the same
## [13.1.0] - 2022-11-17

+ 1
- 1
src/webviews/apps/rebase/rebase.ts 파일 보기

@ -511,7 +511,7 @@ class RebaseEditor extends App {
$avatarStack.classList.add('entry-avatar');
const hasAuthor = author?.avatarUrl.length;
const hasCommitter = author !== committer && committer?.avatarUrl.length;
const hasCommitter = author !== committer && author.author !== 'You' && committer?.avatarUrl.length;
if (hasAuthor) {
const $avatar = document.createElement('avatar-item') as AvatarItem;
$avatar.media = author.avatarUrl;

불러오는 중...
취소
저장