We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6ce20 commit d9db5dfCopy full SHA for d9db5df
back/src/main/java/com/back/domain/news/comment/dto/CommentResponse.java
@@ -17,7 +17,7 @@ public class CommentResponse {
17
public CommentResponse(NewsComment newsComment) {
18
this.id = newsComment.getId();
19
this.content = newsComment.getContent();
20
- this.author = newsComment.getMember().getName();
+ this.author = newsComment.getMember().getNickname();
21
this.memberId = newsComment.getMember().getId();
22
this.createdDate = newsComment.getCreateDate();
23
this.modifiedDate = newsComment.getModifyDate();
0 commit comments