Skip to content

Commit

Permalink
🐛 fix results more videos title
Browse files Browse the repository at this point in the history
  • Loading branch information
moisout committed Sep 18, 2020
1 parent e40983d commit 11e86c3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/pages/results.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@
<div v-if="results.movies && results.movies.length" class="movies">
<MovieEntry v-for="(item, index) in results.movies" :key="index" :data="item" />
</div>
<!-- <SectionTitle
<SectionTitle
v-if="
!(
results.channels && results.channels.length ||
results.verticalShelf && results.verticalShelf.length ||
results.compactShelf && results.compactShelf.length ||
results.playlists && results.playlists.length ||
results.movies && results.movies.length
(results.channels && results.channels.length) ||
(results.verticalShelf && results.verticalShelf.length) ||
(results.compactShelf && results.compactShelf.length) ||
(results.playlists && results.playlists.length) ||
(results.movies && results.movies.length)
)
"
:title="`More videos`"
/> -->
/>
<div v-if="results.videos && results.videos.length" class="videos">
<VideoEntry v-for="(video, index) in results.videos" :key="index" :video="video" />
</div>
Expand Down

0 comments on commit 11e86c3

Please sign in to comment.