Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11152 | Rev 14843 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11152 Rev 14524
Línea 9... Línea 9...
9
	closeModal,
9
	closeModal,
10
	editUrl,
10
	editUrl,
11
	action
11
	action
12
}) => {
12
}) => {
Línea 13... Línea 13...
13
 
13
 
14
	const { handleSubmit, register } = useForm()
14
	const { handleSubmit, register, setValue } = useForm()
15
	const [error, setError] = useState(null)
15
	const [error, setError] = useState(null)
16
	const [industries, setIndustries] = useState([])
-
 
Línea 17... Línea 16...
17
	const [currentIndustry, setCurrentIndustry] = useState('')
16
	const [industries, setIndustries] = useState([])
Línea 18... Línea 17...
18
 
17
 
19
	const onSubmit = ({ industry }) => {
18
	const onSubmit = ({ industry }) => {
Línea 40... Línea 39...
40
			.then(({ industries, industry_id }) => {
39
			.then(({ industries, industry_id }) => {
41
				Object.entries(industries).map(([key, value]) => {
40
				Object.entries(industries).map(([key, value]) => {
42
					setIndustries(prev => [...prev, { value: key, name: value }])
41
					setIndustries(prev => [...prev, { value: key, name: value }])
43
				})
42
				})
Línea 44... Línea 43...
44
 
43
 
45
				setCurrentIndustry(industry_id)
44
				setValue('industry', industry_id)
46
			})
45
			})
Línea 47... Línea 46...
47
	}, [isOpen])
46
	}, [isOpen])
48
 
47
 
Línea 77... Línea 76...
77
				<Modal.Footer>
76
				<Modal.Footer>
78
					<Button
77
					<Button
79
						variant="primary"
78
						variant="primary"
80
						type="submit"
79
						type="submit"
81
					>
80
					>
82
                        Enviar
81
						Enviar
83
					</Button>
82
					</Button>
84
					<Button
83
					<Button
85
						className='btn-tertiary'
84
						className='btn-tertiary'
86
						onClick={closeModal}
85
						onClick={closeModal}
87
					>
86
					>
88
                        Cancelar
87
						Cancelar
89
					</Button>
88
					</Button>
90
				</Modal.Footer>
89
				</Modal.Footer>
91
			</form>
90
			</form>
92
		</Modal >
91
		</Modal >
93
	)
92
	)