Skip to content

Commit

Permalink
Don't display list title when it's not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowFish085 committed Sep 11, 2020
1 parent 46966a0 commit 4c8ac5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/search/MediaSearch.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<!-- eslint-disable max-len -->
<div class="search-results">
<ListTitle :title="firstListLabel" :displayed="firstListDisplayed" :onClick="togleFirstList" />
<ListTitle v-if="firstListLabel" :title="firstListLabel" :displayed="firstListDisplayed" :onClick="togleFirstList" />
<div class="results-wrapper" :class="{ folded: !firstListDisplayed }">
<div class="folded-overlay"></div>
<transition appear name="fade">
Expand Down

0 comments on commit 4c8ac5d

Please sign in to comment.