Skip to content

Commit

Permalink
[frontend] Fix color picker in tags edition
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Hassine committed Feb 23, 2020
1 parent dea6db9 commit b7629a0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const tagValidation = (t) => Yup.object().shape({
tag_type: Yup.string().required(t('This field is required')),
definition: Yup.string().required(t('This field is required')),
value: Yup.string().required(t('This field is required')),
color: Yup.string().required(t('This field is required')),
});

class TagEditionContainer extends Component {
Expand Down

0 comments on commit b7629a0

Please sign in to comment.