diff options
| author | ShittyKopper <shittykopper@w.on-t.work> | 2024-02-04 15:20:11 +0300 |
|---|---|---|
| committer | ShittyKopper <shittykopper@w.on-t.work> | 2024-02-04 15:21:57 +0300 |
| commit | 592f77371f3cc49a10edc46d9b0a06f05a1d2d51 (patch) | |
| tree | d35b6f5d8461bed9b04d034c6bcd8eba82564413 /packages/frontend/src/components/SkNoteDetailed.vue | |
| parent | fix: local instance ticker bug that fails to render notes in dev mode (diff) | |
| download | sharkey-592f77371f3cc49a10edc46d9b0a06f05a1d2d51.tar.gz sharkey-592f77371f3cc49a10edc46d9b0a06f05a1d2d51.tar.bz2 sharkey-592f77371f3cc49a10edc46d9b0a06f05a1d2d51.zip | |
upd: rename SkNoteSub property
Diffstat (limited to 'packages/frontend/src/components/SkNoteDetailed.vue')
| -rw-r--r-- | packages/frontend/src/components/SkNoteDetailed.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/SkNoteDetailed.vue b/packages/frontend/src/components/SkNoteDetailed.vue index 5b28a2e8eb..d88c779974 100644 --- a/packages/frontend/src/components/SkNoteDetailed.vue +++ b/packages/frontend/src/components/SkNoteDetailed.vue @@ -178,7 +178,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-if="!repliesLoaded" style="padding: 16px"> <MkButton style="margin: 0 auto;" primary rounded @click="loadReplies">{{ i18n.ts.loadReplies }}</MkButton> </div> - <SkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true" :expandAllCws="props.expandAllCws" :onDeleteCallback="removeReply" :reply="true"/> + <SkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true" :expandAllCws="props.expandAllCws" :onDeleteCallback="removeReply" :isReply="true"/> </div> <div v-else-if="tab === 'renotes'" :class="$style.tab_renotes"> <MkPagination :pagination="renotesPagination" :disableAutoLoad="true"> |