fix: translation button still display when posts have no contents (#2027)

zio/stable
Alex 2023-04-28 15:36:05 +08:00 committed by GitHub
parent 574d72af61
commit cbba846c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,11 @@ const {
} = useTranslation(status, getLanguageCode())
const preferenceHideTranslation = usePreferences('hideTranslation')
const showButton = computed(() => !preferenceHideTranslation.value && isTranslationEnabled)
const showButton = computed(() =>
!preferenceHideTranslation.value
&& isTranslationEnabled
&& status.content.trim().length,
)
let translating = $ref(false)
async function toggleTranslation() {