Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14379 Rev 14383
Línea 400... Línea 400...
400
					setValue('name', data.data.name)
400
					setValue('name', data.data.name)
401
					setValue('description', data.data.description)
401
					setValue('description', data.data.description)
402
					setValue('text', data.data.description)
402
					setValue('text', data.data.description)
403
					setDescription(data.data.description)
403
					setDescription(data.data.description)
404
					setText(data.data.text)
404
					setText(data.data.text)
405
					console.log(description, text)
-
 
406
				})
405
				})
407
		}
406
		}
408
	}, [actionLink])
407
	}, [actionLink])
-
 
408
	const handleDescription = (e) =>{
-
 
409
		setDescription(e)
-
 
410
	}
-
 
411
	const hendleText = (e) =>{
-
 
412
		setText(e)
-
 
413
	}
Línea 409... Línea 414...
409
 
414
 
410
	return (
415
	return (
411
		<>
416
		<>
412
			<section className="content">
417
			<section className="content">
Línea 420... Línea 425...
420
							<label htmlFor="form-description">Descripción</label>
425
							<label htmlFor="form-description">Descripción</label>
421
							{(description) && 
426
							{(description) && 
422
							<DescriptionInput
427
							<DescriptionInput
423
								defaultValue={description}
428
								defaultValue={description}
424
								name='description'
429
								name='description'
425
								outputValue={(e)=>{ console.log("esto es e:", e)}}
430
								outputValue={handleDescription}
426
							/>}
431
							/>}
Línea 427... Línea 432...
427
							
432
							
428
						</div>
433
						</div>
429
						<div className="form-group">
434
						<div className="form-group">
430
							<label htmlFor="form-description">Texto</label>
435
							<label htmlFor="form-description">Texto</label>
431
							{(text) && 
436
							{(text) && 
432
							<DescriptionInput
437
							<DescriptionInput
433
								defaultValue={text}
438
								defaultValue={text}
434
								name='text'
439
								name='text'
435
								outputValue={(e)=>{ setText(e)}}
440
								outputValue={hendleText}
436
							/>}
441
							/>}
437
						</div>
442
						</div>
438
						<div className="form-group">
443
						<div className="form-group">
439
							<label htmlFor="form-status">Estatus</label>
444
							<label htmlFor="form-status">Estatus</label>