|
@@ -118,6 +118,11 @@ export async function rejectInspectedTask(
|
|
|
studentId: string,
|
|
|
questionList: Array<Question>
|
|
|
) {
|
|
|
+ questionList = JSON.parse(
|
|
|
+ JSON.stringify(questionList, (key, value) =>
|
|
|
+ !key.startsWith("__") ? value : undefined
|
|
|
+ )
|
|
|
+ );
|
|
|
return httpApp.post("/admin/exam/inspected/rejected", {
|
|
|
studentId,
|
|
|
questionList,
|