Merge pull request #1060 from laazyCmd/if-comments-disabled

show message if comments are disabled in a video
This commit is contained in:
Kavin
2022-05-16 13:19:27 +01:00
committed by GitHub

View File

@@ -121,7 +121,13 @@
<hr />
<div class="grid xl:grid-cols-5 sm:grid-cols-4 grid-cols-1">
<div v-if="comments" ref="comments" class="xl:col-span-4 sm:col-span-3">
<div v-if="!comments" class="xl:col-span-4 sm:col-span-3">
<p class="text-center mt-8">Comments are loading...</p>
</div>
<div v-else-if="comments.disabled" class="xl:col-span-4 sm:col-span-3">
<p class="text-center mt-8">Comments are turned off.</p>
</div>
<div v-else ref="comments" class="xl:col-span-4 sm:col-span-3">
<CommentItem
v-for="comment in comments.comments"
:key="comment.commentId"