Update src/components/WatchVideo.vue

This commit is contained in:
sweep-ai[bot] 2023-08-04 09:43:40 +00:00 committed by GitHub
parent 39d1deb5f2
commit d17edd7792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,9 +197,11 @@
class="btn mb-2"
@click="toggleComments"
v-text="
`${$t(showComments ? 'actions.minimize_comments' : 'actions.show_comments')} (${numberFormat(
comments?.commentCount,
)})`
comments?.disabled
? $t('actions.comments_disabled')
: `${$t(showComments ? 'actions.minimize_comments' : 'actions.show_comments')} (${numberFormat(
comments?.commentCount,
)})`
"
/>
</div>