mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
18 lines
497 B
Vue
18 lines
497 B
Vue
<script setup lang="ts">
|
|
import type { Conversation } from 'masto'
|
|
|
|
const props = defineProps<{
|
|
conversation: Conversation
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<article flex flex-col gap-2>
|
|
<div flex gap-2 text-sm px-2>
|
|
{{ $t('conversation.with') }}
|
|
<AccountInlineInfo v-for="account in conversation.accounts" :key="account.id" :account="account" />
|
|
</div>
|
|
<StatusCard v-if="conversation.lastStatus" :status="conversation.lastStatus" :actions="false" />
|
|
</article>
|
|
</template>
|