[ Fix ]: UI cutout for HTTP Probe properties input fields by changing inputGroup type from 'number' to 'string' #5269
+6
−6
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.
Proposed changes
This PR fixes the UI cutout issue for HTTP Probe properties input fields (Timeout, Interval, Attempt, etc.) in ChaosCenter by changing the
inputGrouptype from'number'to'string'to match the styling behavior of the Name field. This resolves the visual glitch that appears when these input fields are focused.Issue Link: #5258
Types of changes
What types of changes does your code introduce to Litmus? Put an
xin the boxes that applyChecklist
Put an
xin the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.Dependency
Special notes for your reviewer:
This is a minimal UI fix that changes 6 instances across 3 files. The validation logic remains unchanged as it's handled by Yup schemas, not input types. The fix ensures consistent focus styling across all HTTP Probe input fields.