mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix minimize recommandation overlap.
This commit is contained in:
parent
3d188f2cc8
commit
63062bd767
1 changed files with 10 additions and 9 deletions
|
@ -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'}`)"
|
||||||
/>
|
/>
|
||||||
<VideoItem
|
<hr v-show="showRecs" />
|
||||||
v-for="related in video.relatedStreams"
|
<div v-show="showRecs || !smallView">
|
||||||
class="w-auto"
|
<VideoItem
|
||||||
v-show="showRecs || !smallView"
|
v-for="related in video.relatedStreams"
|
||||||
: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 a new issue