-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Move group management to table #8212
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There's a subtle regression in nested group modals wherein closing a nested modal does not bring the focus back automatically to the parent modal - we render each modal as a separate top level dialog; reakit suggests the child modal to be rendered inside the parent to ensure proper focus on close (https://reakit.io/docs/dialog/#nested-dialogs). Fixing this would require changing Dialogs and Modal component. I was wondering if we can live with this slight regression for a couple weeks until the modal component is migrated to Radix (my next big task), which will anyway need some re-implementation. |
Add 'External ID' in menu when present
Closes #7484
This PR moves group management page to use
Table
component. Along the way, group modals that were scattered in many files are consolidated into a singleGroupDialogs
file.