-
Notifications
You must be signed in to change notification settings - Fork 698
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
User Management Screen improvements #4454
Merged
Saranya-jena
merged 20 commits into
litmuschaos:master
from
kartikaysaxena:usermanagment_improvements
Apr 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
cf2c348
pagination added
kartikaysaxena ff89499
Merge branch 'master' into usermanagment_improvements
Saranya-jena b0973f1
manual itemsPerPage limit options
kartikaysaxena 4f4862c
Merge branch 'master' into usermanagment_improvements
SarthakJain26 ef3b1cb
manual itemsPerPage limit options
kartikaysaxena f9d1e01
Merge branch 'usermanagment_improvements' of https://github.com/karti…
kartikaysaxena c16e21e
Merge branch 'master' into usermanagment_improvements
kartikaysaxena c84ef98
Merge branch 'master' into usermanagment_improvements
Saranya-jena e728166
Merge branch 'master' into usermanagment_improvements
kartikaysaxena 7c2ffaf
Merge branch 'master' into usermanagment_improvements
hrishavjha 3ff1ee4
Merge branch 'master' into usermanagment_improvements
Saranya-jena 23fcb96
Merge branch 'master' into usermanagment_improvements
Saranya-jena ead0e01
Merge branch 'master' into usermanagment_improvements
kartikaysaxena 4b839e2
Update chaoscenter/web/src/views/AccountSettingsUserManagement/Accoun…
kartikaysaxena b0d93e4
Update chaoscenter/web/src/views/AccountSettingsUserManagement/Accoun…
kartikaysaxena 08800f9
Update chaoscenter/web/src/views/AccountSettingsUserManagement/Accoun…
kartikaysaxena b18c29c
suggestion implemented
kartikaysaxena 372378b
Merge branch 'usermanagment_improvements' of https://github.com/karti…
kartikaysaxena 88c8348
Merge branch 'master' into usermanagment_improvements
kartikaysaxena 6253636
Merge branch 'master' into usermanagment_improvements
Saranya-jena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Users can manually set limits too, you can do something like
src/controllers/ExperimentDashboardV2/ExperimentDashboardV2.tsx
what done here.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually I have my minors this week, would continue from next week. Apologies for delay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure no problems @kartikaysaxena, all the best for your exams.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added options for the user to select the number of itemsPerPage. Should I add more options or change it into an input field or does it look fine? PTAL @hrishavjha
Screen.Recording.2024-03-06.at.7.06.21.PM.mov
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you pass
pageSizeOptions: [...new Set([10 , 20, itemsPerPage])].sort()
prop to the pagination component it will render the dropdown. Rest changes looks good to me 🚀