Skip to content

Commit

Permalink
fix(frontend): 노트 상세 페이지에서 사용자 이름이 중복으로 표시될 수 있음
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Nov 26, 2024
1 parent 398a3c1 commit 587469d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
# 릴리스 노트
이 문서는 CherryPick의 변경 사항만 포함합니다.

## 4.x.x
출시일: unreleased<br>
기반 Misskey 버전: 2024.x.x<br>
Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGELOG.md#2024xx) 문서를 참고하십시오.

### Client
- Fix: 노트 상세 페이지에서 사용자 이름이 중복으로 표시될 수 있음

---

## 4.14.0
출시일: 2024/11/26<br>
기반 Misskey 버전: 2024.11.0<br>
Expand Down
2 changes: 2 additions & 0 deletions packages/frontend/src/components/MkNoteDetailed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkInstanceTicker v-if="showTicker" :instance="appearNote.user.instance" @click="showOnRemote"/>
</div>
<div :class="$style.noteHeaderUsernameAndBadgeRoles">
<!--
<div :class="$style.noteHeaderUsername">
<MkAcct :user="appearNote.user"/>
</div>
-->
<div v-if="appearNote.user.badgeRoles" :class="$style.noteHeaderBadgeRoles">
<img v-for="(role, i) in appearNote.user.badgeRoles" :key="i" v-tooltip="role.name" :class="$style.noteHeaderBadgeRole" :src="role.iconUrl!"/>
</div>
Expand Down

0 comments on commit 587469d

Please sign in to comment.