1
0
Fork 0
mirror of synced 2024-08-31 09:41:13 +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 f7e627d68b
commit 14f7351c4a

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>