Hide date and views separator on the watch page when views are hidden (#4697)

This commit is contained in:
absidue 2024-02-21 18:13:37 +01:00 committed by GitHub
parent 73805300ae
commit a6cb20be40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,10 @@
</div>
<div class="videoMetrics">
<div class="datePublishedAndViewCount">
{{ publishedString }} {{ dateString }} {{ parsedViewCount }}
{{ publishedString }} {{ dateString }}
<template v-if="!hideVideoViews">
{{ parsedViewCount }}
</template>
</div>
<div
v-if="!hideVideoLikesAndDislikes"