mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
fix: 🐛 Fix missing quotes
This commit is contained in:
parent
e7768e3a3f
commit
c7b239415f
|
|
@ -12,7 +12,7 @@
|
||||||
<SocialElementsNotesAttachment v-for="attachment of note.media_attachments" :key="attachment.id"
|
<SocialElementsNotesAttachment v-for="attachment of note.media_attachments" :key="attachment.id"
|
||||||
:attachment="attachment" />
|
:attachment="attachment" />
|
||||||
</div>
|
</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" />
|
class="mt-4 !rounded" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else
|
<div v-else
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ export type Status = {
|
||||||
language: string | null;
|
language: string | null;
|
||||||
pinned: boolean | null;
|
pinned: boolean | null;
|
||||||
emoji_reactions: Array<Reaction>;
|
emoji_reactions: Array<Reaction>;
|
||||||
quote: boolean;
|
quote: Status;
|
||||||
bookmarked: boolean;
|
bookmarked: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue