Skip to content

Commit

Permalink
fix: 어드민 분석기능 출신 학교 현황 조회 시 학생들이 이름순으로 정렬되지 않는 오류 해결
Browse files Browse the repository at this point in the history
- 부산 지역 학생들은 정렬이 되지 않은 상태로 나오는 오류를 해결했어요.
  • Loading branch information
cabbage16 committed Oct 19, 2024
1 parent fd1a494 commit d2c96a6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ public List<SchoolStatusVo> findSchoolByAddress(List<FormStatus> round, String k
.where(form.education.school.address.contains(keyword)
.or(form.education.school.location.eq(keyword))
.and(form.status.in(round)))
.orderBy(form.applicant.name.asc())
.fetch();
}

Expand Down

0 comments on commit d2c96a6

Please sign in to comment.