Display: Fix children of <table> HTML element

pull/5868/head
Angel Fernando Quiroz Campos 11 months ago
parent 976c59d307
commit c380f0b6e2
No known key found for this signature in database
GPG Key ID: B284841AE3E562CD
  1. 4
      assets/vue/components/installer/Step4.vue
  2. 2
      assets/vue/views/documents/DocumentShow.vue

@ -142,6 +142,7 @@
severity="success"
>
<table>
<tbody>
<tr>
<td v-t="'Database host'" />
<td v-text="installerData.stepData.connParams.host" />
@ -154,8 +155,10 @@
<td v-t="'Database driver'" />
<td v-text="installerData.stepData.connParams.driver" />
</tr>
</tbody>
</table>
<table v-if="'update' === installerData.installType">
<tbody>
<tr>
<td v-t="'CREATE TABLE works'" />
<td v-t="'OK'" />
@ -168,6 +171,7 @@
<td v-t="'DROP COLUMN works'" />
<td v-t="'OK'" />
</tr>
</tbody>
</table>
</Message>
<Message

@ -41,6 +41,7 @@
<div class="document-show__details-side">
<table>
<tbody>
<tr>
<th v-text="$t('Author')" />
<td v-text="item.resourceNode.creator.username" />
@ -72,6 +73,7 @@
</a>
</td>
</tr>
</tbody>
</table>
<ShowLinks :item="item" />

Loading…
Cancel
Save