display a human-readable error message for topic custom parameers value field (#1896)
This commit is contained in:
parent
b160b504f9
commit
b511b8cdda
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ export const topicFormValidationSchema = yup.object().shape({
|
|||
customParams: yup.array().of(
|
||||
yup.object().shape({
|
||||
name: yup.string().required(),
|
||||
value: yup.string().required(),
|
||||
value: yup.string().required('Value is required'),
|
||||
})
|
||||
),
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue