Added validation when adding polls
This commit is contained in:
parent
28521fb1a5
commit
8abcd28835
|
@ -92,8 +92,10 @@ const InnerForm = ({
|
||||||
const StyledForm = withStyles(styles)(InnerForm);
|
const StyledForm = withStyles(styles)(InnerForm);
|
||||||
const AddPoll = withFormik({
|
const AddPoll = withFormik({
|
||||||
mapPropsToValues: props => ({ description: ''}),
|
mapPropsToValues: props => ({ description: ''}),
|
||||||
validate(values){
|
validate(values, props){
|
||||||
const errors = {};
|
const errors = {};
|
||||||
|
const { description } = values;
|
||||||
|
if(description.toString().trim() === "") errors.description = true;
|
||||||
return errors;
|
return errors;
|
||||||
},
|
},
|
||||||
async handleSubmit(values, { setSubmitting }) {
|
async handleSubmit(values, { setSubmitting }) {
|
||||||
|
|
Loading…
Reference in New Issue