Skip to content
Snippets Groups Projects
Unverified Commit a03d3a85 authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Remove description length check from copy question form (#44736)

parent 48b6f349
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ const QUESTION_SCHEMA = Yup.object({
.required(Errors.required)
.max(100, Errors.maxLength)
.default(""),
description: Yup.string().nullable().max(255, Errors.maxLength).default(null),
description: Yup.string().nullable().default(null),
collection_id: Yup.number().nullable().default(null),
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment