diff --git a/frontend/src/components/submission_notes/SubmissionCorrection.vue b/frontend/src/components/submission_notes/SubmissionCorrection.vue index d63cff8e62ec29a3e3d423e8f6e804361efcc29d..d3c9e73639fb13921bce4eb9bf69984fb9bc5587 100644 --- a/frontend/src/components/submission_notes/SubmissionCorrection.vue +++ b/frontend/src/components/submission_notes/SubmissionCorrection.vue @@ -18,12 +18,12 @@ id="sub-lines" #table-content > - <math-renderer :enabled="mathIsRendered"> - <tr - v-for="(code, lineNo) in submission" - :id="`sub-line-${lineNo}`" - :key="`${submissionObj.pk}${lineNo}`" - > + <tr + v-for="(code, lineNo) in submission" + :id="`sub-line-${lineNo}`" + :key="`${submissionObj.pk}${lineNo}`" + > + <math-renderer :enabled="mathIsRendered"> <submission-line :hint="hasHiddenComment(lineNo)" :code="code" @@ -57,8 +57,8 @@ @collapseFeedbackForm="toggleEditorOnLine(lineNo)" /> </submission-line> - </tr> - </math-renderer> + </math-renderer> + </tr> </template> <template #labels> <label-selector diff --git a/frontend/src/pages/student/StudentSubmissionPage.vue b/frontend/src/pages/student/StudentSubmissionPage.vue index 755983c6c4ae2b2ad1879940c753cf244b8ab6c8..fb800b4cd9b3503720e6285fa1d4efb9883b70f5 100644 --- a/frontend/src/pages/student/StudentSubmissionPage.vue +++ b/frontend/src/pages/student/StudentSubmissionPage.vue @@ -30,11 +30,11 @@ /> </template> <template #table-content> - <math-renderer :enabled="mathIsRendered"> - <tr - v-for="(code, lineNo) in submissionText" - :key="lineNo" - > + <tr + v-for="(code, lineNo) in submissionText" + :key="lineNo" + > + <math-renderer :enabled="mathIsRendered"> <submission-line :code="code" :line-no="lineNo" @@ -52,8 +52,8 @@ </template> </template> </submission-line> - </tr> - </math-renderer> + </math-renderer> + </tr> </template> </base-annotated-submission> <v-card>