Skip to content

Commit

Permalink
DoveadmComponent: Fix bad HTML (missing TR tag)
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 3, 2024
1 parent 6b3ee22 commit 97fb9bb
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 97fb9bb

Please sign in to comment.