|
@@ -36,6 +36,8 @@ export class EditInfoPage implements OnInit {
|
|
this.currentUser = Parse.User.current();
|
|
this.currentUser = Parse.User.current();
|
|
if (this.currentUser) {
|
|
if (this.currentUser) {
|
|
console.log(this.userInfo)
|
|
console.log(this.userInfo)
|
|
|
|
+ this.userInfo.birthday = this.userInfo.birthday || new Date()
|
|
|
|
+ this.userInfo.birthday = new Date(this.userInfo.birthday);
|
|
for (const key in this.userInfo) {
|
|
for (const key in this.userInfo) {
|
|
if (this.userInfo.hasOwnProperty(key)) {
|
|
if (this.userInfo.hasOwnProperty(key)) {
|
|
this.currentUser.set(key, this.userInfo[key]);
|
|
this.currentUser.set(key, this.userInfo[key]);
|