1
0
Fork 0
mirror of synced 2024-07-18 20:56:04 +12:00

Merge pull request #8218 from Budibase/user-fixes

Fix user pagination not working when viewing users with access to an app
This commit is contained in:
Andrew Kingston 2022-10-11 19:00:30 +01:00 committed by GitHub
commit 004d6457de

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>