Don't show pagination control if the data source isn't an internal table
This commit is contained in:
parent
e78d686292
commit
4675272f4b
|
@ -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}
|
||||||
|
|
Loading…
Reference in New Issue