diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-11 10:27:59 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-11 10:27:59 +0900 |
| commit | 5cc0219ff2d621d2f7839b16d0f813b230dcc0b3 (patch) | |
| tree | 9232f8111170e8e384de98ed6c75ad6599b18622 /packages/frontend/src/components | |
| parent | enhance(client): 添付ファイルが5つ以上あるときは折りたた... (diff) | |
| download | sharkey-5cc0219ff2d621d2f7839b16d0f813b230dcc0b3.tar.gz sharkey-5cc0219ff2d621d2f7839b16d0f813b230dcc0b3.tar.bz2 sharkey-5cc0219ff2d621d2f7839b16d0f813b230dcc0b3.zip | |
tweak MkNote
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index a37dd9bd39..2a00a95386 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -7,7 +7,7 @@ :class="$style.root" :tabindex="!isDeleted ? '-1' : null" > - <MkNoteSub v-if="appearNote.reply" :note="appearNote.reply" :class="$style.replyTo"/> + <MkNoteSub v-if="appearNote.reply && !renoteCollapsed" :note="appearNote.reply" :class="$style.replyTo"/> <div v-if="pinned" :class="$style.tip"><i class="ti ti-pin"></i> {{ i18n.ts.pinnedNote }}</div> <!--<div v-if="appearNote._prId_" class="tip"><i class="fas fa-bullhorn"></i> {{ i18n.ts.promotion }}<button class="_textButton hide" @click="readPromo()">{{ i18n.ts.hideThisNote }} <i class="ti ti-x"></i></button></div>--> <!--<div v-if="appearNote._featuredId_" class="tip"><i class="ti ti-bolt"></i> {{ i18n.ts.featured }}</div>--> |