thelounge/client/components/Special/ListIgnored.vue

27 lines
483 B
Vue
Raw Normal View History

2018-07-11 09:54:32 +02:00
<template>
<table class="ignore-list">
<thead>
<tr>
<th class="hostmask">Hostmask</th>
<th class="when">Ignored At</th>
</tr>
</thead>
<tbody>
2019-07-17 11:33:59 +02:00
<tr v-for="user in channel.data" :key="user.hostmask">
2018-07-11 09:54:32 +02:00
<td class="hostmask">{{ user.hostmask }}</td>
<td class="when">{{ user.when | localetime }}</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
name: "ListIgnored",
props: {
2018-07-19 19:44:24 +02:00
network: Object,
2018-07-11 09:54:32 +02:00
channel: Object,
},
};
</script>