Skip to content

Commit

Permalink
enhance(frontend): 갤러리를 노트로 공유할 때 줄바꿈이 적용됨
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 3, 2024
1 parent 659dc64 commit f4c63b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
- Enhance: 이미지 뷰어가 파일 이름과 캡션을 동시에 표시하도록 변경
- Enhance: 노트를 작성할 때 첨부한 파일에 캡션이 존재하는 경우 파일 목록에 아이콘을 표시함
- Enhance: 미디어 숨기기 버튼의 디자인을 개선함
- Enhance: 갤러리를 노트로 공유할 때 줄바꿈이 적용됨
- Fix: 환경설정 백업 시 일부 설정이 누락되어 백업될 수 있음
- Fix: 이미지 자르기를 할 때 이미지 크기 전체를 표시하지 못할 수 있음
- Fix: 페이지에서 페이지 생성 버튼이 본문에 중복으로 표시됨
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/gallery/post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function share() {
function shareWithNote() {
os.post({
initialText: `${post.value.title} ${url}/gallery/${post.value.id}`,
initialText: `${post.value.title}\n${url}/gallery/${post.value.id}`,
});
}
Expand Down

0 comments on commit f4c63b5

Please sign in to comment.