Skip to content

Commit

Permalink
webapp: Fix html error in eventlog
Browse files Browse the repository at this point in the history
  • Loading branch information
tbnobody committed Sep 20, 2024
1 parent 43394bc commit 34e1c43
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions webapp/src/components/EventLog.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<template>
<table class="table table-hover">
<thead>
<th scope="col">{{ $t('eventlog.Start') }}</th>
<th scope="col">{{ $t('eventlog.Stop') }}</th>
<th scope="col">{{ $t('eventlog.Id') }}</th>
<th scope="col">{{ $t('eventlog.Message') }}</th>
<tr>
<th scope="col">{{ $t('eventlog.Start') }}</th>
<th scope="col">{{ $t('eventlog.Stop') }}</th>
<th scope="col">{{ $t('eventlog.Id') }}</th>
<th scope="col">{{ $t('eventlog.Message') }}</th>
</tr>
</thead>
<tbody>
<template v-for="event in eventLogList.count" :key="event">
Expand Down

0 comments on commit 34e1c43

Please sign in to comment.