Skip to content

Commit

Permalink
Merge pull request #60 from Bamsongee/feat/#59-product-csv
Browse files Browse the repository at this point in the history
Fix: product 조회 시 title null로 보이는 문제 해결
  • Loading branch information
7beunseo authored Aug 18, 2024
2 parents 064f9b1 + efc469f commit aadb498
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public static ProductResponseDTO toDto(ProductEntity productEntity) {
return ProductResponseDTO.builder()
.id(productEntity.getId())
.image(productEntity.getImage())
.title(productEntity.getTitle())
.description(productEntity.getDescription())
.percent(productEntity.getPercent())
.price(productEntity.getPrice())
Expand Down

0 comments on commit aadb498

Please sign in to comment.