mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-05-11 06:59:14 +08:00
display quotes first
This commit is contained in:
parent
eeecba3322
commit
32987455d0
1 changed files with 9 additions and 9 deletions
|
@ -40,7 +40,14 @@
|
||||||
@play="$emit('mediaplay', attachment.id)"
|
@play="$emit('mediaplay', attachment.id)"
|
||||||
@pause="$emit('mediapause', attachment.id)"
|
@pause="$emit('mediapause', attachment.id)"
|
||||||
/>
|
/>
|
||||||
|
<div
|
||||||
|
v-if="status.quote"
|
||||||
|
class="quote"
|
||||||
|
>
|
||||||
|
<QuoteCard
|
||||||
|
:status="status.quote"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="status.card && !noHeading && !compact"
|
v-if="status.card && !noHeading && !compact"
|
||||||
class="link-preview media-body"
|
class="link-preview media-body"
|
||||||
|
@ -51,14 +58,7 @@
|
||||||
:nsfw="nsfwClickthrough"
|
:nsfw="nsfwClickthrough"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
v-if="status.quote"
|
|
||||||
class="quote"
|
|
||||||
>
|
|
||||||
<QuoteCard
|
|
||||||
:status="status.quote"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</StatusBody>
|
</StatusBody>
|
||||||
<slot name="footer" />
|
<slot name="footer" />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue