-
Notifications
You must be signed in to change notification settings - Fork 429
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
Prevent Unnecessary Update Request in Facilities Section #8956
Open
kihan2518B
wants to merge
19
commits into
ohcnetwork:develop
Choose a base branch
from
kihan2518B:issues/8918/fix-form-validation
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6644cdb
Added isDirty state to track form changes
kihan2518B b6dc6bf
Merge branch 'develop' into issues/8918/fix-form-validation
kihan2518B b2400f7
Merge branch 'develop' into issues/8918/fix-form-validation
kihan2518B 086b282
Added 'save & add more' button in Form component
kihan2518B 3c81bb1
Removed unnecessary logs and commits
kihan2518B a414d1f
solved wrong condition in BedCapacity component
kihan2518B 5151974
fixed the form component to update the submit button label
kihan2518B 56dcc10
formated submit button label in StaffCapacity and BedCapacity
kihan2518B f7726bc
removed unnecessary conditions
kihan2518B e52f76d
addded meaningfull variable names
kihan2518B 971ad4d
updated shifDetailsUpdate page to use Form Component
kihan2518B 4ff3dcf
solved merge conflicts in ShifDetailsUpdate component
kihan2518B def4813
updated ResourceDetailsUpdate component to use Form Component
kihan2518B be714d4
updated package-lock with latest one
kihan2518B f40317d
removed unnecessary types
kihan2518B cbea55e
removed unnecessary conditions
kihan2518B d77cd8f
Merge branch 'develop' into issues/8918/fix-form-validation
kihan2518B f8d191e
solved merge conflicts
kihan2518B 7ae6649
Merge branch 'develop' into issues/8918/fix-form-validation
nihal467 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
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.
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.
Fix logical error in number conversion within conditional checks
There is a logical error in the way
Number()
is used within the conditional statements. The expressionNumber(form[field] < 0)
converts the boolean result ofform[field] < 0
into a number (0
or1
), which is not the intended comparison.To fix this issue, you should convert
form[field]
to a number before performing the comparison.Apply this diff to correct the conditionals:
Also applies to: 126-126