mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23: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>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<div i-ri-chat-1-line text-blue />
|
<div i-ri-chat-1-line text-blue />
|
||||||
<div ws-nowrap>
|
<div ws-nowrap flex>
|
||||||
<i18n-t keypath="status.replying_to" />
|
<i18n-t keypath="status.replying_to">
|
||||||
</div>
|
|
||||||
<template v-if="account">
|
<template v-if="account">
|
||||||
<AccountInlineInfo :account="account" :link="false" />
|
<AccountInlineInfo :account="account" :link="false" m-inline-1 />
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
{{ $t('status.someone') }}
|
{{ $t('status.someone') }}
|
||||||
</template>
|
</template>
|
||||||
|
</i18n-t>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue