mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
Fix minimize recommandation overlap.
This commit is contained in:
parent
3d188f2cc8
commit
63062bd767
@ -122,15 +122,16 @@
|
|||||||
@click="showRecs = !showRecs"
|
@click="showRecs = !showRecs"
|
||||||
v-text="$t(`actions.${showRecs ? 'minimize_recommendations' : 'show_recommendations'}`)"
|
v-text="$t(`actions.${showRecs ? 'minimize_recommendations' : 'show_recommendations'}`)"
|
||||||
/>
|
/>
|
||||||
|
<hr v-show="showRecs" />
|
||||||
|
<div v-show="showRecs || !smallView">
|
||||||
<VideoItem
|
<VideoItem
|
||||||
v-for="related in video.relatedStreams"
|
v-for="related in video.relatedStreams"
|
||||||
class="w-auto"
|
|
||||||
v-show="showRecs || !smallView"
|
|
||||||
:key="related.url"
|
:key="related.url"
|
||||||
:video="related"
|
:video="related"
|
||||||
height="94"
|
height="94"
|
||||||
width="168"
|
width="168"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
<hr class="sm:hidden" />
|
<hr class="sm:hidden" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user