Fix minimize recommandation overlap.

This commit is contained in:
FireMasterK 2022-01-12 22:17:22 +00:00
parent 3d188f2cc8
commit 63062bd767
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 10 additions and 9 deletions

View File

@ -122,15 +122,16 @@
@click="showRecs = !showRecs"
v-text="$t(`actions.${showRecs ? 'minimize_recommendations' : 'show_recommendations'}`)"
/>
<VideoItem
v-for="related in video.relatedStreams"
class="w-auto"
v-show="showRecs || !smallView"
:key="related.url"
:video="related"
height="94"
width="168"
/>
<hr v-show="showRecs" />
<div v-show="showRecs || !smallView">
<VideoItem
v-for="related in video.relatedStreams"
:key="related.url"
:video="related"
height="94"
width="168"
/>
</div>
<hr class="sm:hidden" />
</div>
</div>