Skip to content

Commit

Permalink
fix: fix updateFamilyName logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji-soo708 committed Dec 9, 2024
1 parent f3f441b commit d79cedb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion family/src/main/java/com/oing/domain/Family.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ public void resetScore() {
public void updateFamilyName(String familyName, String familyNameEditorId) {
if (familyName != null) {
validateFamilyName(familyName);
this.familyName = familyName;
} else {
this.familyName = null;
}
this.familyName = familyName;
this.familyNameEditorId = familyNameEditorId;
}

Expand Down

0 comments on commit d79cedb

Please sign in to comment.