mirror of https://github.com/bra1n/townsquare.git
make change pronoun menu option appear for both story tellers and the seated player
This commit is contained in:
parent
ccd40ccc99
commit
5bafa94a1a
|
@ -112,9 +112,6 @@
|
|||
<li @click="changeName">
|
||||
<font-awesome-icon icon="user-edit" />Rename
|
||||
</li>
|
||||
<li @click="changePronoun">
|
||||
<font-awesome-icon icon="" />Change Pronouns
|
||||
</li>
|
||||
<li v-if="!session.nomination" @click="nominatePlayer()">
|
||||
<font-awesome-icon icon="hand-point-right" />
|
||||
Nomination
|
||||
|
@ -153,6 +150,12 @@
|
|||
</template>
|
||||
<template v-else> Seat occupied</template>
|
||||
</li>
|
||||
<li
|
||||
@click="changePronoun"
|
||||
v-if="!session.isSpectator || player.id === session.playerId"
|
||||
>
|
||||
<font-awesome-icon icon="" />Change Pronouns
|
||||
</li>
|
||||
</ul>
|
||||
</transition>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue