fixing
This commit is contained in:
parent
3d7c5ccc62
commit
637176618b
1 changed files with 3 additions and 2 deletions
|
|
@ -566,8 +566,9 @@ function editForm(row: any) {
|
|||
educationData.duration = row.duration;
|
||||
educationData.durationYear = row.durationYear;
|
||||
educationData.note = row.note;
|
||||
educationData.startYear = +row.startDate.slice(0, 4);
|
||||
educationData.endYear = +row.endDate.slice(0, 4);
|
||||
educationData.startYear =
|
||||
row.isDate == "true" ? row.startDate.slice(0, 4) : "";
|
||||
educationData.endYear = row.isDate == "true" ? row.endDate.slice(0, 4) : "";
|
||||
dialog.value = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue