-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fix group loan modal #754
Merged
Merged
Fix group loan modal #754
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
17b4caa
Open a loan modal when clicking on a non-stacked loan card
Adamik10 cfe8235
Add a keyboard listener to stackable fees card to improve accessibility
Adamik10 2da7690
Make sure not to trigger parent events in MaterialInfo component
Adamik10 c61fc45
Merge branch 'release/2023-50-0' into fix/group-loan-modal
Adamik10 dd6901f
Merge branch 'release/2024-1-0' into fix/group-loan-modal
Adamik10 9d1c209
Update dpl-design-system package to have fee list modal container update
Adamik10 db02787
Add materialNumberText to fee list app & remove unused amountText
Adamik10 b87984b
Use materialNumberText in stackable fees list to display material number
Adamik10 c11cdae
Remove the option to pay from fee details content & connected elements
Adamik10 82c2624
Show reason for getting the fee in stacked fee group modal red rectangle
Adamik10 4e77ffc
Update fee list test not to look for elements that have been removed
Adamik10 8581c58
Merge branch 'release/2024-1-0' into fix/group-loan-modal
Adamik10 30f1084
Create a helper function to handle material info details click
Adamik10 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.
This feels weird somehow
Why not just a regular if/else or just
(openDueDateModal && dueDate) ? openDueDateModal(dueDate) : openLoanDetailsModal(loan)
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.
Because
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.
Correct, but you can either return the whole statement or remove the curly braces
OR