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

pull/1634/head^2
yheuhtozr 2023-02-16 04:21:08 +09:00 zatwierdzone przez GitHub
rodzic 769b84867a
commit 523578ba7b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 9 dodań i 8 usunięć

Wyświetl plik

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