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
1 changed files with 2 additions and 2 deletions

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>