diff --git a/kafka-ui-react-app/src/lib/yupExtended.ts b/kafka-ui-react-app/src/lib/yupExtended.ts index 91f88c3c279..c8af702f0f3 100644 --- a/kafka-ui-react-app/src/lib/yupExtended.ts +++ b/kafka-ui-react-app/src/lib/yupExtended.ts @@ -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'), }) ), });