mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 15:18:59 +01:00
c1514ce91d
Fix #13290
20 lines
452 B
Vue
20 lines
452 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<Mfm :text="user.name ?? user.username" :author="user" :plain="true" :nowrap="nowrap" :emojiUrls="user.emojis"/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
user: Misskey.entities.User;
|
|
nowrap?: boolean;
|
|
}>(), {
|
|
nowrap: true,
|
|
});
|
|
</script>
|