display a human-readable error message for topic custom parameers value field (#1896)

This commit is contained in:
Arsen Simonyan 2022-05-02 13:53:47 +04:00 committed by Arsen Simonyan
parent b160b504f9
commit b511b8cdda

View file

@ -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'),
})
),
});