diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-12 22:27:57 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-12 22:27:57 +0100 |
| commit | f0a2ce00e788867d5cf660e4e44df9e34a4ace26 (patch) | |
| tree | a921ad2c2a12913f687ca307186b2cbc61fefb3b | |
| parent | upd: add additional checks for akkoma and pleroma (diff) | |
| download | sharkey-f0a2ce00e788867d5cf660e4e44df9e34a4ace26.tar.gz sharkey-f0a2ce00e788867d5cf660e4e44df9e34a4ace26.tar.bz2 sharkey-f0a2ce00e788867d5cf660e4e44df9e34a4ace26.zip | |
chore: lint
| -rw-r--r-- | packages/frontend/src/components/MkNoteDetailed.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index 6deda63352..586744e608 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-if="!conversationLoaded" style="padding: 16px"> <MkButton style="margin: 0 auto;" primary rounded @click="loadConversation">{{ i18n.ts.loadConversation }}</MkButton> </div> - <MkNoteSub v-for="note in conversation" :meta="meta" :key="note.id" :class="$style.replyToMore" :note="note" :expandAllCws="props.expandAllCws"/> + <MkNoteSub v-for="note in conversation" :key="note.id" :meta="meta" :class="$style.replyToMore" :note="note" :expandAllCws="props.expandAllCws"/> </div> <MkNoteSub v-if="appearNote.reply" :meta="meta" :note="appearNote.reply" :class="$style.replyTo" :expandAllCws="props.expandAllCws"/> <div v-if="isRenote" :class="$style.renote"> |