Skip to content

Commit

Permalink
!hotfix: 포트폴리오 portfolioId 검색 조건 쿼리 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwp031 committed Jul 26, 2024
1 parent e788b1d commit 7b87ff2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ private BooleanExpression isClubId(Long clubId) {
}

private BooleanExpression isPortfolioId(Long portfolioId) {
return portfolioId != null ? portfolio.club.id.eq(portfolioId) : null;
return portfolioId != null ? portfolio.id.eq(portfolioId) : null;
}
}

0 comments on commit 7b87ff2

Please sign in to comment.