fix issue with platforms dropdown

This commit is contained in:
Gamebrary 2020-10-21 09:25:11 -07:00
parent c16dd74f8c
commit 9b8f00a2da

View file

@ -1,17 +1,13 @@
<template lang="html"> <template lang="html">
<div class="platform-picker"> <div class="platform-picker">
<b-dropdown <b-dropdown
:text="dropdownLabel"
menu-class="platforms-dropdown" menu-class="platforms-dropdown"
class="platforms-dropdown"
boundary="viewport" boundary="viewport"
> >
<template v-slot:button-content>
{{ dropdownLabel }}
</template>
<b-dropdown-item <b-dropdown-item
v-for="platform in filteredPlatforms" v-for="platform in filteredPlatforms"
:key="platform" :key="platform.id"
:active="value.includes(platform.id)" :active="value.includes(platform.id)"
@click="handleClick(platform.id)" @click="handleClick(platform.id)"
> >