Use same colours for empty log message as for info logs
This commit is contained in:
parent
bbe6e99736
commit
559d211df8
1 changed files with 10 additions and 10 deletions
|
|
@ -35,18 +35,18 @@
|
|||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="uk-width-xlarge uk-align-center">
|
||||
<div v-if="filteredItems.length == 0" class="uk-alert-primary" uk-alert>
|
||||
<p>
|
||||
No log entries found at the current filter level (<strong>{{ filterLevel }}</strong> or
|
||||
higher).
|
||||
</p>
|
||||
<p>You can include lower levels using the dropdown in the top left.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Logging items -->
|
||||
<div class="uk-width-xlarge uk-align-center">
|
||||
<div v-if="filteredItems.length == 0" class="logging-entry" uk-alert>
|
||||
<div class="logging-entry-body">
|
||||
<p>
|
||||
No log entries found at the current filter level (<strong>{{ filterLevel }}</strong> or
|
||||
higher).
|
||||
</p>
|
||||
<p>You can include lower levels using the dropdown in the top left.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-for="item in pagedItems"
|
||||
:key="item.sequence"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue