Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Oct 19, 2023
2 parents ee4510e + 8f41550 commit 8615a37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public List<VoteCommonData> findVoteCommonDataByParticipate(Long userId, int pag
.innerJoin(voteResult).on(voteResult.voteId.eq(vote.id))
.groupBy(vote.id)
.where(voteResult.votedUserId.eq(userId))
.orderBy(vote.createdDate.desc())
.orderBy(voteResult.createdDate.desc())
.offset(pageNum * pageSize)
.limit(pageSize + 1)
.fetch();
Expand Down

0 comments on commit 8615a37

Please sign in to comment.