fix(ui): unintentionally hardcoded word order of status.replying_to (#1744)

This commit is contained in:
yheuhtozr 2023-02-16 04:21:08 +09:00 committed by GitHub
parent 769b84867a
commit 523578ba7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>