소스 검색

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

Arsen Simonyan 3 년 전
부모
커밋
b511b8cdda
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      kafka-ui-react-app/src/lib/yupExtended.ts

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