fix tbody warnings
This commit is contained in:
parent
09240a0502
commit
567931bc88
1 changed files with 108 additions and 96 deletions
|
@ -32,22 +32,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.accept_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.accept_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in acceptInstances"
|
<tr
|
||||||
:key="entry.instance + '_accept'"
|
v-for="entry in acceptInstances"
|
||||||
>
|
:key="entry.instance + '_accept'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -57,22 +59,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.reject_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.reject_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in rejectInstances"
|
<tr
|
||||||
:key="entry.instance + '_reject'"
|
v-for="entry in rejectInstances"
|
||||||
>
|
:key="entry.instance + '_reject'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -82,22 +86,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.quarantine_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.quarantine_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in quarantineInstances"
|
<tr
|
||||||
:key="entry.instance + '_quarantine'"
|
v-for="entry in quarantineInstances"
|
||||||
>
|
:key="entry.instance + '_quarantine'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -107,22 +113,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.ftl_removal_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.ftl_removal_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in ftlRemovalInstances"
|
<tr
|
||||||
:key="entry.instance + '_ftl_removal'"
|
v-for="entry in ftlRemovalInstances"
|
||||||
>
|
:key="entry.instance + '_ftl_removal'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -132,22 +140,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.media_nsfw_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.media_nsfw_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in mediaNsfwInstances"
|
<tr
|
||||||
:key="entry.instance + '_media_nsfw'"
|
v-for="entry in mediaNsfwInstances"
|
||||||
>
|
:key="entry.instance + '_media_nsfw'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -157,22 +167,24 @@
|
||||||
<p>{{ $t("about.mrf.simple.media_removal_desc") }}</p>
|
<p>{{ $t("about.mrf.simple.media_removal_desc") }}</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tbody>
|
||||||
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
<tr>
|
||||||
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
<th>{{ $t("about.mrf.simple.instance") }}</th>
|
||||||
</tr>
|
<th>{{ $t("about.mrf.simple.reason") }}</th>
|
||||||
<tr
|
</tr>
|
||||||
v-for="entry in mediaRemovalInstances"
|
<tr
|
||||||
:key="entry.instance + '_media_removal'"
|
v-for="entry in mediaRemovalInstances"
|
||||||
>
|
:key="entry.instance + '_media_removal'"
|
||||||
<td>{{ entry.instance }}</td>
|
>
|
||||||
<td v-if="entry.reason === ''">
|
<td>{{ entry.instance }}</td>
|
||||||
{{ $t("about.mrf.simple.not_applicable") }}
|
<td v-if="entry.reason === ''">
|
||||||
</td>
|
{{ $t("about.mrf.simple.not_applicable") }}
|
||||||
<td v-else>
|
</td>
|
||||||
{{ entry.reason }}
|
<td v-else>
|
||||||
</td>
|
{{ entry.reason }}
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue