mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
fix: display account emojis in other account fields too
This commit is contained in:
parent
bc44b0127d
commit
b17c090d36
1 changed files with 2 additions and 2 deletions
|
@ -106,13 +106,13 @@ watchEffect(() => {
|
|||
<div text-secondary uppercase text-xs font-bold>
|
||||
{{ field.name }} |
|
||||
</div>
|
||||
<ContentRich :content="field.value" />
|
||||
<ContentRich :content="field.value" :emojis="account.emojis" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="iconFields.length" flex="~ wrap gap-4">
|
||||
<div v-for="field in iconFields" :key="field.name" flex="~ gap-1" items-center>
|
||||
<div text-secondary :class="getFieldNameIcon(field.name)" :title="field.name" />
|
||||
<ContentRich text-sm filter-saturate-0 :content="field.value" />
|
||||
<ContentRich text-sm filter-saturate-0 :content="field.value" :emojis="account.emojis" />
|
||||
</div>
|
||||
</div>
|
||||
<AccountPostsFollowers :account="account" />
|
||||
|
|
Loading…
Reference in a new issue