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

zio/stable
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
1 changed files with 1 additions and 1 deletions

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" />