Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 11074 Rev 11075
Línea 54... Línea 54...
54
		const content = []
54
		const content = []
55
		competencies.forEach(competency => competency.behaviors.forEach(behavior => {
55
		competencies.forEach(competency => competency.behaviors.forEach(behavior => {
56
			content.push({
56
			content.push({
57
				competencyUuid: behavior.competency_uuid,
57
				competencyUuid: behavior.competency_uuid,
58
				behaviorUuid: behavior.uuid,
58
				behaviorUuid: behavior.uuid,
59
				comment: watch(`${behavior.competency_uuid}_${behavior.uuid}-comment`),
59
				comment: watch(`${behavior.competency_uuid}-${behavior.uuid}-comment`),
60
				evaluation: watch(`select-${behavior.competency_uuid}-${behavior.uuid}`)
60
				evaluation: watch(`select-${behavior.competency_uuid}-${behavior.uuid}`)
61
			})
61
			})
62
		}))
62
		}))
Línea 63... Línea 63...
63
 
63