enhance(client): MkPostFormDialogの改善

This commit is contained in:
NoriDev 2023-06-23 17:32:11 +09:00
parent 5ce3756cf9
commit 43782d223d
2 changed files with 4 additions and 1 deletions

View file

@ -40,6 +40,9 @@
- 절대 시간으로 표시할 때 툴팁에서는 상대 시간을 표기
- 환영 메시지를 MFM으로 렌더링
- 노트 내용이 없으면 번역 버튼을 활성화하지 않음
- 노트 작성 폼 개선
- 내용이 너무 길면 스크롤 가능하도록
- 브라우저의 최대 높이를 초과하지 않도록
- Fix: 그룹 초대 알림 아이콘이 잘못 표시되는 문제
- Fix: 노트 디자인이 올바르지 않게 표시되는 문제
- Fix: 프로필 아이콘이 투명일 때 노트 답글선이 비치는 문제

View file

@ -1,6 +1,6 @@
<template>
<MkModal ref="modal" :preferType="'dialog'" @click="modal.close()" @closed="onModalClosed()">
<MkPostForm ref="form" style="margin: 0 auto auto auto;" v-bind="props" autofocus freezeAfterPosted @posted="onPosted" @cancel="modal.close()" @esc="modal.close()"/>
<MkPostForm ref="form" style="margin: 0 auto auto auto; overflow: scroll; max-height: 100%" v-bind="props" autofocus freezeAfterPosted @posted="onPosted" @cancel="modal.close()" @esc="modal.close()"/>
</MkModal>
</template>