Skip to content
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) parse NumberInput value to Number #367

Merged
merged 2 commits into from
Aug 20, 2024

Conversation

kajambiya
Copy link
Collaborator

Requirements

  • This PR has a title that briefly describes the work done including the ticket number. If there is a ticket, make sure your PR title includes a conventional commit label. See existing PR titles for inspiration.
  • My work conforms to the OpenMRS 3.0 Styleguide and design documentation.
  • My work includes tests or is validated by existing tests.

Summary

The value from the NumberInput field was being captured as a string. As a result, the form-validator would return false when checking if the value is an integer.

Screenshots

Before fix:

Screen.Recording.2024-08-20.at.16.06.17.mov

After fix:

Screen.Recording.2024-08-20.at.16.07.54.mov

Related Issue

Other

@@ -22,6 +22,11 @@ const NumberField: React.FC<FormFieldInputProps> = ({ field, value, errors, warn
}
};

const handleChange = (event) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not a big deal but can we wrap this in a useCallback(..)?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

src/components/inputs/number/number.component.tsx Outdated Show resolved Hide resolved
@samuelmale samuelmale merged commit 8e30a8e into openmrs:main Aug 20, 2024
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants