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