-
Notifications
You must be signed in to change notification settings - Fork 35
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
B 21339 int - Bulk assignment modal: UI Layout and populate data (SC/TOO) #14585
base: integrationTesting
Are you sure you want to change the base?
Conversation
…o B-21339-main
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.
looks great!
3dd030f
@@ -15,4 +15,12 @@ const ConnectedTemplate = (args) => <BulkAssignmentModal {...args} />; | |||
export const ConnectedModal = ConnectedTemplate.bind({}); | |||
ConnectedModal.args = { | |||
isOpen: true, | |||
bulkAssignmentData: { |
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.
Can't see this data in happo so just take it out imo
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.
removed
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.
Bulk assignment button is still slightly different in size than the export button - need to make those the same height at least
Also, what's the desired outcome when a user has a really long name? Right now the modal has a side scrolling box, which I don't really like. Have any thoughts on that?
Screen.Recording.2025-01-31.at.9.19.31.AM.mov
You can prevent that side scrolling behavior by adding overflow-x: hidden
to your scss but you'd also need to cover down and ensure that the modal doesn't get wider than the view screen. Can add a max-width
for that.
.BulkModal {
min-width: 650px !important;
max-width: 90vw;
overflow-y: auto;
max-height: 90vh;
overflow-x: hidden;
Agility ticket
Summary
This will be from the SC (Counseling) and TOO user. This will cover the Bulk Assignment button from both the Counseling queue and Task Order queue.
Important
This PR contains code from SC: Create endpoint 21337 and should be merged after
This PR contains code from TOO: Create endpoint 21445 and should be merged after
This PR contains code from Add bulk assignment button and modal 21336 and should be merged after
How to test
Screenshots