Skip to content

Commit

Permalink
Merge pull request #96 from BaeJunH0/hotfix/fieldMatter
Browse files Browse the repository at this point in the history
긴급 패치!!
  • Loading branch information
BaeJunH0 authored Jan 2, 2025
2 parents 7c43397 + 6905b60 commit 648134a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static Member of(MemberCommand memberCommand) {
memberCommand.email(),
memberCommand.nickname(),
memberCommand.password(),
memberCommand.employed(),
memberCommand.employed() != null && memberCommand.employed(),
memberCommand.gitLink(),
memberCommand.resumeLink()
);
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/static/js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ $(document).ready(function() {
$("#login").click(function(){
var user = {
email: $("#userId").val(),
password : $("#password").val(),
employed : false
password : $("#password").val()
};

$.ajax({
Expand Down

0 comments on commit 648134a

Please sign in to comment.