Skip to content

Commit

Permalink
HTML fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theyosh committed Oct 26, 2024
1 parent 13179eb commit d67ce74
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gui/user-controls/EnclosureCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,10 @@
<h4>{$_('enclosures.doors.title', { default: 'Doors' })}</h4>
<table class="table table-sm">
<thead>
<th style="width: 90%">{$_('table.header.name', { default: 'Name' })}</th>
<th class="text-center">{$_('table.header.status', { default: 'Status' })}</th>
<tr>
<th style="width: 90%">{$_('table.header.name', { default: 'Name' })}</th>
<th class="text-center">{$_('table.header.status', { default: 'Status' })}</th>
</tr>
</thead>
<tbody>
{#each enclosure.doors.sort((a, b) => a.name.localeCompare(b.name)) as door}
Expand Down

0 comments on commit d67ce74

Please sign in to comment.