1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-27 14:28:53 +09:00

enhance(frontend): 갤러리를 노트로 공유할 때 줄바꿈이 적용됨

This commit is contained in:
NoriDev 2024-10-03 21:11:29 +09:00
parent 659dc64b08
commit f4c63b57f6
2 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
- Enhance: 이미지 뷰어가 파일 이름과 캡션을 동시에 표시하도록 변경
- Enhance: 노트를 작성할 때 첨부한 파일에 캡션이 존재하는 경우 파일 목록에 아이콘을 표시함
- Enhance: 미디어 숨기기 버튼의 디자인을 개선함
- Enhance: 갤러리를 노트로 공유할 때 줄바꿈이 적용됨
- Fix: 환경설정 백업 시 일부 설정이 누락되어 백업될 수 있음
- Fix: 이미지 자르기를 할 때 이미지 크기 전체를 표시하지 못할 수 있음
- Fix: 페이지에서 페이지 생성 버튼이 본문에 중복으로 표시됨

View File

@ -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}`,
});
}