mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +01:00
Merge pull request #857 from snippetkid/855-fix-yup-schema-validation
Address validation issue in Yup schema
This commit is contained in:
commit
b633fc58d2
@ -38,14 +38,17 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => {
|
|||||||
return !['collection', 'folder'].includes(trimmedValue);
|
return !['collection', 'folder'].includes(trimmedValue);
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
curlCommand: Yup.string()
|
curlCommand: Yup.string().when('requestType', {
|
||||||
.min(1, 'must be at least 1 character')
|
is: (requestType) => requestType === 'from-curl',
|
||||||
.required('curlCommand is required')
|
then: Yup.string()
|
||||||
.test({
|
.min(1, 'must be at least 1 character')
|
||||||
name: 'curlCommand',
|
.required('curlCommand is required')
|
||||||
message: `Invalid cURL Command`,
|
.test({
|
||||||
test: (value) => getRequestFromCurlCommand(value) !== null
|
name: 'curlCommand',
|
||||||
})
|
message: `Invalid cURL Command`,
|
||||||
|
test: (value) => getRequestFromCurlCommand(value) !== null
|
||||||
|
})
|
||||||
|
})
|
||||||
}),
|
}),
|
||||||
onSubmit: (values) => {
|
onSubmit: (values) => {
|
||||||
if (isEphemeral) {
|
if (isEphemeral) {
|
||||||
|
Loading…
Reference in New Issue
Block a user