mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-12-13 13:50:27 +05:30
Merge pull request #1060 from laazyCmd/if-comments-disabled
show message if comments are disabled in a video
This commit is contained in:
commit
5c361a5abb
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user