Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 10518 Rev 10519
Línea 149... Línea 149...
149
										</div>
149
										</div>
150
										<div className="form-group">
150
										<div className="form-group">
151
											<label>Evaluación</label>
151
											<label>Evaluación</label>
152
											<select name='points' onChange={(e) => setCurrentPoints({ ...currentPoints, value: e.target.value })} value={currentPoints}>
152
											<select name='points' onChange={(e) => setCurrentPoints({ ...currentPoints, value: e.target.value })} value={currentPoints}>
153
												{
153
												{
154
													pointsOptions.map(({ label, value }) => {
154
													pointsOptions.map(({ label, value }) => (
155
														<option key={value} value={value}>{label}</option>
155
														<option key={value} value={value}>{label}</option>
156
													})
156
													))
157
												}
157
												}
158
											</select>
158
											</select>
159
										</div>
159
										</div>
160
										<div className="form-group">
160
										<div className="form-group">
161
											<label>Estatus</label>
161
											<label>Estatus</label>
162
											<select name='status' onChange={(e) => setCurrentStatus({ ...currentStatus, value: e.target.value })} value={currentStatus}>
162
											<select name='status' onChange={(e) => setCurrentStatus({ ...currentStatus, value: e.target.value })} value={currentStatus}>
163
												{
163
												{
164
													statusOptions.map(({ label, value }) => {
164
													statusOptions.map(({ label, value }) => (
165
														<option key={value} value={value}>{label}</option>
165
														<option key={value} value={value}>{label}</option>
166
													})
166
													))
167
												}
167
												}
168
											</select>
168
											</select>
169
										</div>
169
										</div>
170
									</div>
170
									</div>
171
								</div>
171
								</div>