mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
18 lines
399 B
Vue
18 lines
399 B
Vue
<script setup lang="ts">
|
|
import type { Status } from 'masto'
|
|
|
|
const { status } = defineProps<{
|
|
status: Status
|
|
}>()
|
|
const { translation } = useTranslation(status)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="status-body" whitespace-pre-wrap break-words>
|
|
<ContentRichSetup
|
|
:content="translation.visible ? translation.text : status.content"
|
|
:emojis="status.emojis"
|
|
/>
|
|
</div>
|
|
</template>
|