Fix duplicatename

This commit is contained in:
Yorick Bosman 2022-02-14 23:36:32 +01:00
parent 1ed4f57afc
commit 1742469d4b
No known key found for this signature in database
GPG key ID: 897BE31A59E048CE

View file

@ -9,7 +9,7 @@
<tbody>
<tr v-for="user in channel.data" :key="user.hostmask">
<td class="hostmask"><ParsedMessage :network="network" :text="user.hostmask" /></td>
<td class="when">{{ localetime(user.when) }}</td>
<td class="when">{{ getLocaletime(user.when) }}</td>
</tr>
</tbody>
</table>
@ -29,7 +29,7 @@ export default {
channel: Object,
},
methods: {
localetime(date) {
getLocaletime(date) {
return localetime(date);
},
},