chore: avoid br inside a table

svelte5 reports it is forbidden so get rid of it

Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent Benoit 2024-02-11 23:23:13 +01:00 committed by Florent BENOIT
parent 2b04c89399
commit 32f7e69a35

View file

@ -132,7 +132,6 @@ if (pod?.status?.startTime) {
<td class="py-2 px-4">{container.volumeMounts?.map(vm => vm.name).join(', ') || ''}</td>
</tr>
{/if}
<br />
{/each}
{/if}
@ -143,7 +142,6 @@ if (pod?.status?.startTime) {
</tr>
{#each pod.spec.volumes as volume}
<KubeDetailsSummaryVolumes volume="{volume}" />
<br />
{/each}
{/if}
</tbody>