fix(client): ノートデザインが正しく表示されない問題

This commit is contained in:
NoriDev 2023-06-20 18:52:42 +09:00
parent 22e0f71dd2
commit b7ecb6f711
3 changed files with 3 additions and 2 deletions

View file

@ -28,6 +28,7 @@
### Client
- Fix: 그룹 초대 알림 아이콘이 잘못 표시되는 문제
- Fix: 노트 디자인이 올바르지 않게 표시되는 문제
---

View file

@ -119,7 +119,7 @@ if (props.detail) {
.cw {
cursor: default;
display: block;
display: grid;
margin: 0;
padding: 0;
overflow-wrap: break-word;

View file

@ -1,6 +1,6 @@
<template>
<div :class="[$style.root, { [$style.collapsed]: collapsed }]">
<div style="display: grid;">
<div>
<span v-if="note.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span>
<span v-if="note.deletedAt" style="opacity: 0.5">({{ i18n.ts.deleted }})</span>
<MkA v-if="note.replyId" :class="$style.reply" :to="`/notes/${note.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA>