mirror of https://github.com/bra1n/townsquare.git
added vote time (closes #81)
This commit is contained in:
parent
be89d51ae6
commit
072cd4cb77
|
@ -30,7 +30,9 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(vote, index) in session.voteHistory" :key="index">
|
<tr v-for="(vote, index) in session.voteHistory" :key="index">
|
||||||
<td>
|
<td>
|
||||||
{{ vote.timestamp.getHours() }}:{{ vote.timestamp.getMinutes() }}
|
{{ vote.timestamp.getHours().padStart(2, "0") }}:{{
|
||||||
|
vote.timestamp.getMinutes().padStart(2, "0")
|
||||||
|
}}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ vote.nominator }}</td>
|
<td>{{ vote.nominator }}</td>
|
||||||
<td>{{ vote.nominee }}</td>
|
<td>{{ vote.nominee }}</td>
|
||||||
|
|
Loading…
Reference in New Issue