fix(ui): Prevent word-wrap on "Replying To" (#1663)

pull/1672/head
Peter Budai 2023-02-07 09:12:30 +01:00 zatwierdzone przez GitHub
rodzic f1087fd270
commit 9e09c9072f
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,14 +27,15 @@ const account = isSelf ? computed(() => status.account) : useAccountById(status.
</template>
<template v-else>
<div i-ri-chat-1-line text-blue />
<i18n-t keypath="status.replying_to">
<template v-if="account">
<AccountInlineInfo :account="account" :link="false" />
</template>
<template v-else>
{{ $t('status.someone') }}
</template>
</i18n-t>
<div ws-nowrap>
<i18n-t keypath="status.replying_to" />
</div>
<template v-if="account">
<AccountInlineInfo :account="account" :link="false" />
</template>
<template v-else>
{{ $t('status.someone') }}
</template>
</template>
</NuxtLink>
</template>