mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
fix(ui): unintentionally hardcoded word order of status.replying_to (#1744)
This commit is contained in:
parent
769b84867a
commit
523578ba7b
1 changed files with 9 additions and 8 deletions
|
@ -27,15 +27,16 @@ const account = isSelf ? computed(() => status.account) : useAccountById(status.
|
|||
</template>
|
||||
<template v-else>
|
||||
<div i-ri-chat-1-line text-blue />
|
||||
<div ws-nowrap>
|
||||
<i18n-t keypath="status.replying_to" />
|
||||
<div ws-nowrap flex>
|
||||
<i18n-t keypath="status.replying_to">
|
||||
<template v-if="account">
|
||||
<AccountInlineInfo :account="account" :link="false" m-inline-1 />
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ $t('status.someone') }}
|
||||
</template>
|
||||
</i18n-t>
|
||||
</div>
|
||||
<template v-if="account">
|
||||
<AccountInlineInfo :account="account" :link="false" />
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ $t('status.someone') }}
|
||||
</template>
|
||||
</template>
|
||||
</NuxtLink>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue