Skip to content

Commit

Permalink
EPMRPP-98406 || Not possible to create Rally integration with valid L…
Browse files Browse the repository at this point in the history
…ink to BTS value due to the validation (#4139)
  • Loading branch information
BlazarQSO authored Dec 23, 2024
1 parent 73d087c commit dead1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/common/utils/validation/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const isNotEmptyArray = composeValidators([isNotEmpty, minLength(1)]);
export const url = composeValidators([isNotEmpty, regex(/^(ftp|http|https):\/\/[^ "]+$/)]);
export const rallyUrl = composeValidators([
isNotEmpty,
regex(/^(https:\/\/rally1.rallydev.com\/).*/),
regex(/^(https:\/\/rally1.rallydev.com).*/),
]);
export const email = composeValidators([regex(/^[a-z0-9.+_-]+@[a-z0-9_.-]+?\.[a-z0-9]{2,}$/i)]);
export const requiredEmail = composeValidators([isNotEmpty, email]);
Expand Down

0 comments on commit dead1d4

Please sign in to comment.