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

Fix user pagination not working when viewing users with access to an app

This commit is contained in:
Andrew Kingston 2022-10-11 14:17:30 +01:00
parent 45e17f16a9
commit 40917f8635

View file

@ -156,8 +156,8 @@
page={$usersFetch.pageNumber + 1}
hasPrevPage={$usersFetch.hasPrevPage}
hasNextPage={$usersFetch.hasNextPage}
goToPrevPage={$usersFetch.loading ? null : fetch.prevPage}
goToNextPage={$usersFetch.loading ? null : fetch.nextPage}
goToPrevPage={$usersFetch.loading ? null : usersFetch.prevPage}
goToNextPage={$usersFetch.loading ? null : usersFetch.nextPage}
/>
</div>
</div>