- Notifications
You must be signed in to change notification settings - Fork1k
feat: add pagination to the organizaton members table#16870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
98b48d6
54a9067
1f6b13c
aaaa89d
cfd11f6
fb15b46
26ae355
4ed07c4
83ac597
f07f92e
5a58c1e
d0a15e5
f45e9ea
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -69,7 +69,6 @@ export const MemberAutocomplete: FC<MemberAutocompleteProps> = ({ | ||
}) => { | ||
const [filter, setFilter] = useState<string>(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. nice catch 😄 so easy to miss comments like this | ||
const membersQuery = useQuery({ | ||
...organizationMembers(organizationId), | ||
enabled: filter !== undefined, | ||
@@ -80,7 +79,7 @@ export const MemberAutocomplete: FC<MemberAutocompleteProps> = ({ | ||
error={membersQuery.error} | ||
isFetching={membersQuery.isFetching} | ||
setFilter={setFilter} | ||
users={membersQuery.data?.members} | ||
{...props} | ||
/> | ||
); | ||
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.