2022-11-26 08:33:32 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
const { account } = defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
|
|
|
|
const serverName = $computed(() => getServerName(account))
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-01 14:29:11 +00:00
|
|
|
<p line-clamp-1 whitespace-pre-wrap break-all text-secondary-light dir="ltr">
|
2022-12-03 05:22:45 +00:00
|
|
|
<!-- fix: #274 only line-clamp-1 can be used here, using text-ellipsis is not valid -->
|
2022-11-26 20:41:18 +00:00
|
|
|
<span text-secondary>{{ getShortHandle(account) }}</span>
|
|
|
|
<span v-if="serverName" text-secondary-light>@{{ serverName }}</span>
|
2022-11-26 08:33:32 +00:00
|
|
|
</p>
|
|
|
|
</template>
|