added va;idation for contact person. it will accept only alphabetical character #79
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "pramod_Bug#197"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Issue
Update / Create Project
"Contact Person" field was previously not properly validated, allowing invalid input such as numbers and special characters.
Fixed
Updated the field to accept only alphabetic characters (both upper and lowercase) and spaces.
Input is now validated with a regex pattern (/^[A-Za-z\s]+$/) that ensures the field contains only letters and spaces.
And accept less than 50 characters.