fix: only display select season on tabs that make sense

This commit is contained in:
Valentin Kaelin 2020-02-02 13:11:49 +01:00
parent e520807919
commit 155d4a32e5

View file

@ -92,11 +92,13 @@
</div> </div>
<!-- Select Season --> <!-- Select Season -->
<FilterSeason /> <template v-if="$route.meta.season">
<FilterSeason />
</template>
</div> </div>
</template> </template>
<!-- View --> <!-- View -->
<transition :name="tabTransition"> <transition :name="tabTransition">
<slot></slot> <slot></slot>
</transition> </transition>