Skip to content

Commit

Permalink
hotfix : 진행중인 공고 마감일 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MyunghyunNero committed Nov 23, 2023
1 parent b8b67fb commit cdfff45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public class ProgramManagerRes {
private LocalDate recruitStartDate;

@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "Asia/Seoul")
private LocalDate recuritEndDate;
private LocalDate recruitEndDate;
}
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private List<ProgramManagerRes> getProgramManagerRes(List<Program> programs){
programManagerRes.setLike(program.getProgramLike());
programManagerRes.setViewCount(program.getViewCount());
programManagerRes.setRecruitStartDate(program.getRecruitStartDate());
programManagerRes.setRecuritEndDate(program.getRecruitEndDate());
programManagerRes.setRecruitEndDate(program.getRecruitEndDate());
return programManagerRes;
}).collect(Collectors.toList());
}
Expand Down

0 comments on commit cdfff45

Please sign in to comment.