fix: 🐛 Fix missing quotes

This commit is contained in:
Jesse Wierzbinski 2024-06-07 22:45:20 -10:00
parent e7768e3a3f
commit c7b239415f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
<SocialElementsNotesAttachment v-for="attachment of note.media_attachments" :key="attachment.id"
:attachment="attachment" />
</div>
<LazySocialElementsNotesNote v-if="isQuote && note?.reblog" :note="note?.reblog" :small="true"
<LazySocialElementsNotesNote v-if="isQuote && note?.quote" :note="note?.quote" :small="true"
class="mt-4 !rounded" />
</div>
<div v-else

View file

@ -38,7 +38,7 @@ export type Status = {
language: string | null;
pinned: boolean | null;
emoji_reactions: Array<Reaction>;
quote: boolean;
quote: Status;
bookmarked: boolean;
};