Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 12292 Rev 12301
Línea 28... Línea 28...
28
	const onSubmit = () => {
28
	const onSubmit = () => {
Línea 29... Línea 29...
29
 
29
 
30
		const content = []
30
		const content = []
31
		jobDescription.competencies.forEach(competency => competency.behaviors.forEach(behavior => {
31
		jobDescription.competencies.forEach(competency => competency.behaviors.forEach(behavior => {
32
			content.push({
32
			content.push({
33
				competency_uuid: behavior.competency_uuid,
33
				competencyUuid: behavior.competency_uuid,
34
				uuid: behavior.uuid,
34
				behaviorUuid: behavior.uuid,
35
				comment: watch(`${behavior.competency_uuid}-${behavior.uuid}-comment`),
35
				comment: watch(`${behavior.competency_uuid}-${behavior.uuid}-comment`),
36
				evaluation: watch(`select-${behavior.competency_uuid}-${behavior.uuid}`)
36
				evaluation: watch(`select-${behavior.competency_uuid}-${behavior.uuid}`)
37
			})
37
			})
Línea 203... Línea 203...
203
											</div>
203
											</div>
204
										</div>
204
										</div>
205
									</div>
205
									</div>
206
									<div className="form-group">
206
									<div className="form-group">
207
										<button type="submit" className="btn btn-primary btn-form-save-close mr-2">
207
										<button type="submit" className="btn btn-primary btn-form-save-close mr-2">
208
                                            Guardar
208
                                            Guardar & Cerrar
209
										</button>
209
										</button>
210
										<button
210
										<button
211
											type="button"
211
											type="button"
212
											className="btn btn-secondary btn-edit-cancel"
212
											className="btn btn-secondary btn-edit-cancel"
213
											onClick={() => history.goBack()}
213
											onClick={() => history.goBack()}