fix game modal header

This commit is contained in:
Gamebrary 2020-10-23 09:19:41 -07:00
parent 6cb09819f8
commit 72768b6a7f
2 changed files with 13 additions and 11 deletions

View file

@ -21,8 +21,7 @@
<modal-header <modal-header
:title="game.name" :title="game.name"
:subtitle="gameModalData.list.name" :subtitle="gameModalData.list.name"
@close="close" >
/>
<b-button-group> <b-button-group>
<b-button <b-button
size="sm" size="sm"
@ -42,6 +41,7 @@
<icon name="triangle-right" /> <icon name="triangle-right" />
</b-button> </b-button>
</b-button-group> </b-button-group>
</modal-header>
</template> </template>
<b-container v-if="game.name" class="m-0 p-0"> <b-container v-if="game.name" class="m-0 p-0">

View file

@ -5,6 +5,7 @@
<small>{{ subtitle }}</small> <small>{{ subtitle }}</small>
</div> </div>
<div class="actions">
<slot /> <slot />
<b-button <b-button
@ -15,6 +16,7 @@
> >
<icon name="x" /> <icon name="x" />
</b-button> </b-button>
</div>
</header> </header>
</template> </template>