Skip to content

Commit

Permalink
display a human-readable error message for topic custom parameers val…
Browse files Browse the repository at this point in the history
…ue field (#1896)
  • Loading branch information
simonyandev authored May 2, 2022
1 parent e74a01b commit 3e7d0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kafka-ui-react-app/src/lib/yupExtended.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
})
),
});

0 comments on commit 3e7d0fe

Please sign in to comment.