fix: don't show translate button if signed out

This commit is contained in:
naskya 2023-09-04 18:18:43 +09:00
parent d9f7e2bede
commit 587840ec37
No known key found for this signature in database
GPG Key ID: 164DFF24E2D40139
2 changed files with 10 additions and 2 deletions

View File

@ -220,7 +220,11 @@
</button>
<XQuoteButton class="button" :note="appearNote" />
<button
v-if="isForeignLanguage && translation == null"
v-if="
$i != null &&
isForeignLanguage &&
translation == null
"
class="button _button"
@click.stop="translate"
v-tooltip.noDelay.bottom="i18n.ts.translate"

View File

@ -125,7 +125,11 @@
</button>
<XQuoteButton class="button" :note="appearNote" />
<button
v-if="isForeignLanguage && translation == null"
v-if="
$i != null &&
isForeignLanguage &&
translation == null
"
class="button _button"
@click.stop="translate"
v-tooltip.noDelay.bottom="i18n.ts.translate"