This commit is contained in:
Steffen 2021-01-07 20:12:38 +01:00
parent 2717b69ea2
commit 873083b8d1
1 changed files with 7 additions and 3 deletions

View File

@ -20,7 +20,7 @@
<td>Type</td>
<td>Votes</td>
<td><font-awesome-icon icon="hand-paper" /> Hand up</td>
<td>Passed</td>
<td>Majority</td>
</tr>
</thead>
<tbody>
@ -28,13 +28,17 @@
<td>{{ vote.nominator }}</td>
<td>{{ vote.nominee }}</td>
<td>{{ vote.type }}</td>
<td><strong>{{ vote.votes.length }}</strong> / {{ vote.majority }}</td>
<td>{{ vote.votes.length }}</td>
<td>
<font-awesome-icon icon="user-friends" />
{{ vote.votes.join(", ") }}
</td>
<td>
<font-awesome-icon icon="check-square" v-if="vote.votes.length >= vote.majority" />
{{ vote.majority }}
<font-awesome-icon
icon="check-square"
v-if="vote.votes.length >= vote.majority"
/>
</td>
</tr>
</tbody>