fix: parse emojis in account page title (#690)

This commit is contained in:
Vjacheslav Trushkin 2023-01-02 11:00:00 +02:00 committed by GitHub
parent fa9c418e21
commit da7d85b1d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ onReactivated(() => {
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>{{ account ? getDisplayName(account) : t('nav.profile') }}</span>
<ContentRich text-lg font-bold :content="account ? getDisplayName(account) : t('nav.profile')" />
</template>
<template v-if="pending" />