fix: no default empty string array values

This commit is contained in:
Konstantin Tenekedzhiev 2022-12-29 17:15:44 +02:00
parent 44fe658282
commit 6304c122f9
1 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ var models = {
startDate: "",
endDate: "",
summary: "",
highlights: [""]
highlights: []
};
},
@ -100,7 +100,7 @@ var models = {
startDate: "",
endDate: "",
summary: "",
highlights: [""]
highlights: []
};
},
@ -118,7 +118,7 @@ var models = {
startDate: "",
endDate: "",
gpa: "",
courses: [""]
courses: []
};
},
@ -153,7 +153,7 @@ var models = {
return {
name: "",
level: "",
keywords: [""]
keywords: []
};
},
@ -174,7 +174,7 @@ var models = {
{
return {
name: "",
keywords: [""]
keywords: []
};
},