mirror of https://github.com/bra1n/townsquare.git
linting
This commit is contained in:
parent
bcd57ca3d2
commit
791c4b322f
|
@ -58,7 +58,9 @@
|
|||
<font-awesome-icon icon="users" />
|
||||
Players
|
||||
</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">
|
||||
<em>[R]</em> Randomize
|
||||
</li>
|
||||
|
|
|
@ -3,7 +3,10 @@
|
|||
v-show="modals.role && availableRoles.length"
|
||||
@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">
|
||||
<li
|
||||
v-for="role in availableRoles"
|
||||
|
|
Loading…
Reference in New Issue