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

View file

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