Skip to content

Commit

Permalink
[refactor] 회고 키워드 글자수 변경(#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjddhh authored May 11, 2023
1 parent 694f592 commit def8346
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class RetrospectKeywordDto {
String classify;

@NotBlank(message = "keyword 는 비어있을 수 없습니다.")
@Size(min = 1, max = 5, message="keyword 는 최소 1개, 최대 5개의 문자만 입력 가능합니다.")
@Size(min = 1, max = 7, message="keyword 는 최소 1개, 최대 7개의 문자만 입력 가능합니다.")
String keyword;

public RetrospectKeywordDto(RetrospectKeyword retrospectKeyword) {
Expand Down

0 comments on commit def8346

Please sign in to comment.