fix(client-side): change story content field name in yup schema
This commit is contained in:
parent
739cfb5eff
commit
1cd16a4ecc
@ -26,7 +26,7 @@ export const cs = yup.object<FormChapter>().shape({
|
|||||||
}),
|
}),
|
||||||
hidden: yup.boolean().oneOf([true, false]),
|
hidden: yup.boolean().oneOf([true, false]),
|
||||||
pot: yup.string().oneOf(["pasteOrType", "upload"]).required("Story content is required!"),
|
pot: yup.string().oneOf(["pasteOrType", "upload"]).required("Story content is required!"),
|
||||||
storytext: yup.string().when("pot", ([pot], schema) => {
|
content: yup.string().when("pot", ([pot], schema) => {
|
||||||
return pot === "pasteOrType"
|
return pot === "pasteOrType"
|
||||||
? schema
|
? schema
|
||||||
.test("numWords", "Story must be at least 50 words", (value: any, context) => {
|
.test("numWords", "Story must be at least 50 words", (value: any, context) => {
|
||||||
@ -56,7 +56,7 @@ export const cs = yup.object<FormChapter>().shape({
|
|||||||
} else {
|
} else {
|
||||||
ext = (value as File)?.name?.split(".").reverse()[0];
|
ext = (value as File)?.name?.split(".").reverse()[0];
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
let reg = /(docx|doc)$/i;
|
let reg = /(docx|doc)$/i;
|
||||||
return reg.test(ext);
|
return reg.test(ext);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user