Skip to content

Commit 7864e94

Browse files
authored
Merge pull request #2070 from Particular/table_compile_warning
fix warning about incorrect html
2 parents 5a4a7b1 + f570d25 commit 7864e94

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/Frontend/src/components/heartbeats/EndpointInstances.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,14 @@ async function toggleAlerts(instance: EndpointsView) {
181181
<i :style="{ fontSize: '1.1em' }" class="fa fa-info-circle text-primary" />
182182
<template #content>
183183
<table>
184-
<tr>
185-
<td style="padding: 3px; width: 6em; text-align: end; align-content: center">
186-
<button type="button" class="btn btn-danger btn-sm"><i class="fa fa-trash text-white" /> Delete</button>
187-
</td>
188-
<td style="padding: 3px">Delete an instance when that instance has been decommissioned.</td>
189-
</tr>
184+
<tbody>
185+
<tr>
186+
<td style="padding: 3px; width: 6em; text-align: end; align-content: center">
187+
<button type="button" class="btn btn-danger btn-sm"><i class="fa fa-trash text-white" /> Delete</button>
188+
</td>
189+
<td style="padding: 3px">Delete an instance when that instance has been decommissioned.</td>
190+
</tr>
191+
</tbody>
190192
</table>
191193
</template>
192194
</tippy>

0 commit comments

Comments
 (0)