Finish comments implementation.

This commit is contained in:
FireMasterK 2021-05-26 01:10:19 +05:30
parent f75d023b60
commit ac950173ee
No known key found for this signature in database
GPG key ID: 8DFF5DD33E93DB58

View file

@ -35,10 +35,10 @@
<hr />
<div class="uk-grid-match uk-grid-small" uk-grid>
<div v-if="comments">
<div uk-grid>
<div class="uk-width-4-5" v-if="comments">
<div
class="uk-tile-default uk-align-left uk-width-3-4"
class="uk-tile-default uk-align-left uk-width-expand"
style="background: #0b0e0f"
v-bind:key="comment.commentId"
v-for="comment in comments.comments"
@ -61,9 +61,10 @@
</div>
</div>
<div class="uk-width-1-5" v-if="video">
<div
class="uk-text-secondary uk-width-auto"
style="background: #0b0e0f; width: 300px"
class="uk-tile-default uk-width-auto"
style="background: #0b0e0f"
v-bind:key="related.url"
v-for="related in video.relatedStreams"
>
@ -81,6 +82,7 @@
</div>
</div>
</div>
</div>
</template>
<script>