First poc for quarantined instances

* I made a table instead of a list
* I'm pretty sure I need to extract the css to somewhere else, but unsure where atm
* All the other lists also need to be done in the same way obviously
* I'm not sure yet what would happen when it gets strings instead of tuples (the way old be's will give) but I'm pretty sure it will give some sort of error and wont display properly
  * Does it need backwards compatibility for older BE's?
This commit is contained in:
Ilja 2020-10-23 15:37:32 +02:00
commit 8ef93aedda

View file

@ -59,13 +59,22 @@
<p>{{ $t("about.mrf.simple.quarantine_desc") }}</p> <p>{{ $t("about.mrf.simple.quarantine_desc") }}</p>
<ul> <table style="width:100%;text-align: left;">
<li <tr>
v-for="instance in quarantineInstances" <th>Instance</th>
<th>Reason</th>
</tr>
<tr>
<td v-for="instance in quarantineInstances"
:key="instance" :key="instance"
v-text="instance" v-text="instance[0]"
/> />
</ul> <td v-for="instance in quarantineInstances"
:key="instance"
v-text="instance[1]"
/>
</tr>
</table>
</div> </div>
<div v-if="ftlRemovalInstances.length"> <div v-if="ftlRemovalInstances.length">