This commit is contained in:
Steffen 2020-05-09 21:48:16 +02:00
parent bcd57ca3d2
commit 791c4b322f
No known key found for this signature in database
GPG Key ID: 764D74E98267DFC6
2 changed files with 7 additions and 2 deletions

View File

@ -58,7 +58,9 @@
<font-awesome-icon icon="users" /> <font-awesome-icon icon="users" />
Players Players
</li> </li>
<li @click="addPlayer" v-if="players.length < 20"><em>[A]</em> Add</li> <li @click="addPlayer" v-if="players.length < 20">
<em>[A]</em> Add
</li>
<li @click="randomizeSeatings" v-if="players.length > 2"> <li @click="randomizeSeatings" v-if="players.length > 2">
<em>[R]</em> Randomize <em>[R]</em> Randomize
</li> </li>

View File

@ -3,7 +3,10 @@
v-show="modals.role && availableRoles.length" v-show="modals.role && availableRoles.length"
@close="toggleModal('role')" @close="toggleModal('role')"
> >
<h3>Choose a new character for {{ playerIndex >= 0 ? players[playerIndex].name : "bluffing" }}</h3> <h3>
Choose a new character for
{{ playerIndex >= 0 ? players[playerIndex].name : "bluffing" }}
</h3>
<ul class="tokens"> <ul class="tokens">
<li <li
v-for="role in availableRoles" v-for="role in availableRoles"