Skip to content

Commit

Permalink
[FIX] pos_partner_birthdate: bug on client creation in pos session wh…
Browse files Browse the repository at this point in the history
…en birthdate field is empty.
  • Loading branch information
suker committed Aug 4, 2023
1 parent a1fb702 commit f118480
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const PartnerDetailsEditBirthdate = (OriginalPartnerDetailsEdit) =>
super.setup();
this.changes = {
...this.changes,
birthdate_date: this.props.partner.birthdate_date || "",
birthdate_date: this.props.partner.birthdate_date || null,
};
}
};
Expand Down

0 comments on commit f118480

Please sign in to comment.