mirror of
https://github.com/usebruno/bruno.git
synced 2025-03-11 21:08:15 +01:00
fix(#163) - removed max limit on request names
This commit is contained in:
parent
b4ea101350
commit
eb6944a1c9
@ -17,7 +17,6 @@ const RenameCollection = ({ collection, onClose }) => {
|
|||||||
validationSchema: Yup.object({
|
validationSchema: Yup.object({
|
||||||
name: Yup.string()
|
name: Yup.string()
|
||||||
.min(1, 'must be at least 1 character')
|
.min(1, 'must be at least 1 character')
|
||||||
.max(50, 'must be 50 characters or less')
|
|
||||||
.required('name is required')
|
.required('name is required')
|
||||||
}),
|
}),
|
||||||
onSubmit: (values) => {
|
onSubmit: (values) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user