diff --git a/src/components/FormCreator/index.tsx b/src/components/FormCreator/index.tsx index 5ed2997..9a1b12f 100644 --- a/src/components/FormCreator/index.tsx +++ b/src/components/FormCreator/index.tsx @@ -62,6 +62,9 @@ export const FormCreator: React.FC = props => { if ('edu_time' in values) { values.edu_time = values.edu_time.split(','); } + if ('work_time' in values) { + values.work_time = values.work_time.split(','); + } props.onChange(values); }; const formProps = {