Skip to content

Commit

Permalink
components: DoveadmComponent - Add missing tr tag
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 8, 2024
1 parent 2fa8e44 commit 16cacd2
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions components/DoveadmComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ const d = Object.fromEntries(Object.entries(data.doveadm).filter(([k, v]) =>

<table v-if="v.args">
<thead>
<th>Argument(s)</th>
<th>Type</th>
<th>Description</th>
<tr>
<th>Argument(s)</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<template v-for="elem in v.args">
Expand All @@ -124,9 +126,11 @@ const d = Object.fromEntries(Object.entries(data.doveadm).filter(([k, v]) =>
<div>
<table>
<thead>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<template v-for="elem in v.args">
Expand Down

0 comments on commit 16cacd2

Please sign in to comment.