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