Skip to content

Commit

Permalink
Merge pull request #236 from swm-standard/rin/swm-190
Browse files Browse the repository at this point in the history
Fix: readQuestionsInWorkbook ๋ฌธ์ œ ์•ˆ์ฝํžˆ๋Š” ๋ฒ„๊ทธ ์ˆ˜์ •
  • Loading branch information
RinRinPARK authored Sep 30, 2024
2 parents 18aa5f2 + 98301a6 commit 95957cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class QuestionSetCustomRepositoryImpl(
val questionSets: MutableList<QuestionSet> =
jpaQueryFactory
.selectFrom(questionSet)
.where(questionSet.id.eq(workbookId))
.where(questionSet.workbook.id.eq(workbookId))
.orderBy(questionSet.sequence.asc())
.fetch()

Expand Down

0 comments on commit 95957cc

Please sign in to comment.