Skip to content

Commit

Permalink
hotfix: user selection was only getting first 100 users
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalsolon committed Nov 23, 2023
1 parent a8c4400 commit cf8ccae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/src/components/dialogs/ManageUsersDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ export default defineComponent({
},
},
mounted() {
// TODO this should not be cached, we should only show the user once the full email has been typed (for privacy)
axios
.get<{ count: number; profiles: Profile[] }>(`${this.config.authhost}/profile/list`)
.get<{ count: number; profiles: Profile[] }>(`${this.config.authhost}/profile/list?limit=6000`)
.then((res) => {
this.profiles = res?.data?.profiles ? [...res.data.profiles] : [];
})
Expand Down

0 comments on commit cf8ccae

Please sign in to comment.