|
|
|
@ -140,7 +140,10 @@ const FormAsignHr = ({ openDialog, closeDialog, toggleDialog, idTask, dataEdit,
|
|
|
|
|
<Col> |
|
|
|
|
<FormGroup> |
|
|
|
|
<Label>Role Human Resource</Label> |
|
|
|
|
<Select showSearch value={projectRole} onChange={(val) => setProjectRole(val)} placeholder="Select Role Human Resource" style={{ width: '100%' }}> |
|
|
|
|
<Select showSearch value={projectRole} onChange={(val) => setProjectRole(val)} |
|
|
|
|
placeholder="Select Role Human Resource" |
|
|
|
|
filterOption={(input, option) => option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0} |
|
|
|
|
tyle={{ width: '100%' }}> |
|
|
|
|
{dataRole && dataRole.map(res => ( |
|
|
|
|
<Option key={res.id} value={res.id}>{`${res.name}`}</Option> |
|
|
|
|
))} |
|
|
|
|