Help message appears if no logs at current level, conditional pagination
This commit is contained in:
parent
763a454c64
commit
3c64c00b74
1 changed files with 11 additions and 0 deletions
|
|
@ -35,6 +35,16 @@
|
|||
</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
|
||||
|
|
@ -81,6 +91,7 @@
|
|||
<!-- eslint-enable -->
|
||||
</div>
|
||||
<PaginateLinks
|
||||
v-if="filteredItems.length > 0"
|
||||
:total-pages="totalPages"
|
||||
:current-page="currentPage"
|
||||
@change-page="changePage"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue