Fix view counter for video lists

This commit is contained in:
Preston 2020-08-16 18:24:07 -04:00
parent f041910172
commit 46fdacf3a7
1 changed files with 2 additions and 1 deletions

View File

@ -82,7 +82,8 @@
class="viewCount"
> {{ parsedViewCount }}</span>
<span v-if="viewCount > 1">{{ $t("Video.Views").toLowerCase() }}</span>
<span v-if="viewCount === 1">{{ $t("Video.View") }}</span>
<span v-else-if="viewCount === 1">{{ $t("Video.View") }}</span>
<span v-else>{{ $t("Video.Views").toLowerCase() }}</span>
<span
v-if="uploadedTime !== '' && !isLive"
class="uploadedTime"