diff --git a/src/components/modals/VoteHistoryModal.vue b/src/components/modals/VoteHistoryModal.vue
index a8f08f0..df43c1d 100644
--- a/src/components/modals/VoteHistoryModal.vue
+++ b/src/components/modals/VoteHistoryModal.vue
@@ -18,8 +18,9 @@
Nominator |
Nominee |
Type |
- Majority |
+ Votes |
Hand up |
+ Passed |
@@ -27,12 +28,14 @@
{{ vote.nominator }} |
{{ vote.nominee }} |
{{ vote.type }} |
- {{ vote.majority }} |
+ {{ vote.votes.length }} / {{ vote.majority }} |
- {{ vote.votes.length }}
{{ vote.votes.join(", ") }}
|
+
+
+ |
@@ -98,5 +101,8 @@ tbody {
td:nth-child(4) {
text-align: center;
}
+ td:nth-child(6) {
+ text-align: center;
+ }
}