Skip to content

Commit

Permalink
fix(ui): unintentionally hardcoded word order of status.replying_to (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
yheuhtozr authored Feb 15, 2023
1 parent 769b848 commit 523578b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions components/status/StatusReplyingTo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit 523578b

Please sign in to comment.