2022-11-18 12:37:22 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Conversation } from 'masto'
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
conversation: Conversation
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-28 02:29:21 +03:00
|
|
|
<article flex flex-col gap-2>
|
2022-11-24 13:09:34 +03:00
|
|
|
<div flex gap-2 flex-wrap text-sm px-2>
|
2022-12-01 16:59:28 +03:00
|
|
|
{{ $t('conversation.with') }}
|
2022-11-18 12:37:22 +03:00
|
|
|
<AccountInlineInfo v-for="account in conversation.accounts" :key="account.id" :account="account" />
|
|
|
|
</div>
|
|
|
|
<StatusCard v-if="conversation.lastStatus" :status="conversation.lastStatus" :actions="false" />
|
2022-11-28 02:29:21 +03:00
|
|
|
</article>
|
2022-11-18 12:37:22 +03:00
|
|
|
</template>
|