Skip to content

Commit 07f255e

Browse files
slusarzsirainen
authored andcommitted
components: DoveadmComponent - Add missing tr tag
1 parent 9d370f6 commit 07f255e

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

components/DoveadmComponent.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,11 @@ const d = Object.fromEntries(Object.entries(data.doveadm).filter(([k, v]) =>
102102

103103
<table v-if="v.args">
104104
<thead>
105-
<th>Argument(s)</th>
106-
<th>Type</th>
107-
<th>Description</th>
105+
<tr>
106+
<th>Argument(s)</th>
107+
<th>Type</th>
108+
<th>Description</th>
109+
</tr>
108110
</thead>
109111
<tbody>
110112
<template v-for="elem in v.args">
@@ -124,9 +126,11 @@ const d = Object.fromEntries(Object.entries(data.doveadm).filter(([k, v]) =>
124126
<div>
125127
<table>
126128
<thead>
127-
<th>Parameter</th>
128-
<th>Type</th>
129-
<th>Description</th>
129+
<tr>
130+
<th>Parameter</th>
131+
<th>Type</th>
132+
<th>Description</th>
133+
</tr>
130134
</thead>
131135
<tbody>
132136
<template v-for="elem in v.args">

0 commit comments

Comments
 (0)