1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Minor change to make sure next button only displayed when relevant.

This commit is contained in:
mike12345567 2021-03-26 13:49:03 +00:00
parent 97f8d34947
commit 41d16442c7

View file

@ -143,7 +143,7 @@
{#if lastBookmark != null || bookmark != null}
<Button primary on:click={previousPage}>Back</Button>
{/if}
{#if nextBookmark != null}
{#if nextBookmark != null && rows.length !== 0}
<Button primary on:click={nextPage}>Next</Button>
{/if}
</div>