mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
bugfix
This commit is contained in:
parent
072cd4cb77
commit
5d932780cf
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@
|
|||
<tbody>
|
||||
<tr v-for="(vote, index) in session.voteHistory" :key="index">
|
||||
<td>
|
||||
{{ vote.timestamp.getHours().padStart(2, "0") }}:{{
|
||||
vote.timestamp.getMinutes().padStart(2, "0")
|
||||
{{ vote.timestamp.getHours().toString().padStart(2, "0") }}:{{
|
||||
vote.timestamp.getMinutes().toString().padStart(2, "0")
|
||||
}}
|
||||
</td>
|
||||
<td>{{ vote.nominator }}</td>
|
||||
|
|
Loading…
Add table
Reference in a new issue