Skip to content

Commit

Permalink
[fix]未採点数のカウントがずれる問題を解消
Browse files Browse the repository at this point in the history
  • Loading branch information
Runa-chama committed Aug 26, 2024
1 parent 8ea73c6 commit 01f9bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/teacher/grading/[testid]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ export default function GradingPage({ params }: { params: { testid: number } })
</TableCell>

{/*未採点問題数を表示するセル*/}
<UngradedCountCell user_index={user_index} ungraded_count={countUngraded(user_index)}/>
<UngradedCountCell user_index={user_index} ungraded_count={countUngraded(submission_index[user_index])}/>

{
(function () {
Expand Down

0 comments on commit 01f9bae

Please sign in to comment.