mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Support for the comment count of a video
This commit is contained in:
parent
dd8f86e179
commit
c751d45607
1 changed files with 5 additions and 1 deletions
|
@ -178,7 +178,11 @@
|
|||
<button
|
||||
class="btn mb-2"
|
||||
@click="toggleComments"
|
||||
v-t="`actions.${showComments ? 'minimize_comments' : 'show_comments'}`"
|
||||
v-text="
|
||||
`${$t(showComments ? 'actions.minimize_comments' : 'actions.show_comments')} (${numberFormat(
|
||||
comments?.commentCount,
|
||||
)})`
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
<div v-if="!showComments" class="xl:col-span-4 sm:col-span-3"></div>
|
||||
|
|
Loading…
Reference in a new issue