2018-07-11 07:54:32 +00:00
|
|
|
<template>
|
|
|
|
<table class="ignore-list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="hostmask">Hostmask</th>
|
|
|
|
<th class="when">Ignored At</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr
|
|
|
|
v-for="user in channel.data"
|
2019-02-25 05:38:13 +00:00
|
|
|
:key="user.hostmask"
|
|
|
|
>
|
2018-07-11 07:54:32 +00: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 17:44:24 +00:00
|
|
|
network: Object,
|
2018-07-11 07:54:32 +00:00
|
|
|
channel: Object,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|