Skip to content

Commit 8a98e69

Browse files
committed
Fixed template for empty eventlog
1 parent ef4909c commit 8a98e69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

views/view-log.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<p>The latest events on this rssCloud server.</p>
1414
</div>
1515

16-
{{#if eventlog}}
1716
<table class="table table-striped">
1817
<thead>
1918
<tr>
@@ -24,6 +23,7 @@
2423
</tr>
2524
</thead>
2625
<tbody id="eventlog">
26+
{{#if eventlog}}
2727
{{#each eventlog}}
2828
<tr>
2929
<td>{{eventtype}}</td>
@@ -32,9 +32,9 @@
3232
<td>{{secs}}</td>
3333
</tr>
3434
{{/each}}
35+
{{/if}}
3536
</tbody>
3637
</table>
37-
{{/if}}
3838
</div>
3939
<div id="headers">
4040
{{#if eventlog}}

0 commit comments

Comments
 (0)