Skip to content

Commit

Permalink
fix(frontend): 노트를 인용했을 때 더 보기 버튼이 보이지 않거나 잘려서 표시될 수 있음
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Aug 27, 2024
1 parent 4c87b4a commit e4b95b2
Show file tree
Hide file tree
Showing 3 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.10.0
출시일: 2024/8/26<br>
기반 Misskey 버전: 2024.7.0<br>
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/components/MkNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,7 @@ function emitUpdReaction(emoji: string, delta: number) {
.contentCollapsed {
position: relative;
min-height: 4.5em;
max-height: 9em;
overflow: clip;
}
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/src/components/MkSubNoteContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ function emitUpdReaction(emoji: string, delta: number) {
&.collapsed {
position: relative;
min-height: 4.5em;
max-height: 9em;
overflow: clip;
Expand Down

0 comments on commit e4b95b2

Please sign in to comment.