diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index eea39319..bc0ae810 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -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, + )})` " />