-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat: Reason for delayed registration in v2 birth #390
base: develop
Are you sure you want to change the base?
Conversation
Oops! Looks like you forgot to update the changelog. When updating CHANGELOG.md, please consider the following:
|
src/form/tennis-club-membership.ts
Outdated
@@ -57,6 +57,7 @@ const TENNIS_CLUB_FORM = defineForm({ | |||
{ | |||
id: 'applicant.firstname', | |||
type: 'TEXT', | |||
options: { maxLength: 32 }, |
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.
Could this be added as constant to ease up the development and possible refactoring
@@ -329,7 +331,7 @@ export const getPersonInputCommonFields = ( | |||
}, | |||
...getIdFields(person), | |||
{ | |||
id: `${person}.address.divider.start`, | |||
id: `${person}.addressDivider_1`, |
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.
any reason for changing casing 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.
This was done so that ES would not nest the dot separated fields
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 good, commented about the "isAfter" nesting on otherside
No description provided.