Don't show pagination control if the data source isn't an internal table

This commit is contained in:
Andrew Kingston 2021-05-14 13:29:37 +01:00
parent e78d686292
commit 4675272f4b
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@
</div> </div>
{:else} {:else}
<slot /> <slot />
{#if paginate} {#if paginate && internalTable}
<div class="pagination"> <div class="pagination">
<Pagination <Pagination
page={pageNumber + 1} page={pageNumber + 1}