mirror of
https://github.com/romancm/gamebrary
synced 2024-11-13 23:17:08 +00:00
Add add games button to basic list
This commit is contained in:
parent
dc128379fe
commit
2bbbaa31bf
1 changed files with 10 additions and 1 deletions
|
@ -31,9 +31,18 @@
|
|||
width="160"
|
||||
/>
|
||||
|
||||
<span class="d-flex w-100 justify-content-center mr-2">{{ games[gameId].name }}</span>
|
||||
<h2 class="d-flex w-100 justify-content-center mr-2">{{ games[gameId].name }}</h2>
|
||||
</b-card>
|
||||
|
||||
<b-button
|
||||
v-if="isBoardOwner"
|
||||
title="Add games"
|
||||
block
|
||||
:to="{ name: 'search', query: { boardId: board.id, listIndex: 0 } }"
|
||||
>
|
||||
<i class="fa-solid fa-plus fa-fw" /> Add games
|
||||
</b-button>
|
||||
|
||||
<div v-if="isEmpty && isBoardOwner">
|
||||
<b-button
|
||||
variant="light"
|
||||
|
|
Loading…
Reference in a new issue