From: Daniel Karbach Date: Wed, 9 Nov 2022 08:40:32 +0000 (+0100) Subject: fix round form schema X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=f9b15fe79f1f4fa54e411b89eb3a5c06bdfb943d;p=alttp.git fix round form schema --- diff --git a/resources/js/components/rounds/EditForm.js b/resources/js/components/rounds/EditForm.js index 6472c84..623e1fb 100644 --- a/resources/js/components/rounds/EditForm.js +++ b/resources/js/components/rounds/EditForm.js @@ -165,7 +165,7 @@ export default withFormik({ }), validationSchema: yup.object().shape({ code: yup.array().of(yup.string()), - rolled_by: yup.string(), + rolled_by: yup.string().nullable(), seed: yup.string().url(), title: yup.string(), }),