set post to empty when saving is done
This commit is contained in:
parent
b840ebe654
commit
1c6fa54f3a
|
@ -74,7 +74,7 @@ const RegistroComunicado = () => {
|
||||||
err => console.log('Ocurrió un error con el fetch', err)
|
err => console.log('Ocurrió un error con el fetch', err)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
let data = {
|
const data = {
|
||||||
_id: comunicado._id,
|
_id: comunicado._id,
|
||||||
post: document.getElementById('txt_comunicado').value,
|
post: document.getElementById('txt_comunicado').value,
|
||||||
user_id: cookies.id,
|
user_id: cookies.id,
|
||||||
|
@ -89,12 +89,12 @@ const RegistroComunicado = () => {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
}
|
}
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
if (response.status != 201)
|
if (response.status != 200)
|
||||||
console.log('Ocurrió un error con el servicio: ' + response.status);
|
console.log('Ocurrió un error con el servicio: ' + response.status);
|
||||||
else
|
else
|
||||||
return response.json();
|
return response.json();
|
||||||
}).then((_response) => {
|
}).then((_response) => {
|
||||||
|
setComunicado(emptyComunicado);
|
||||||
}).catch(
|
}).catch(
|
||||||
err => console.log('Ocurrió un error con el fetch', err)
|
err => console.log('Ocurrió un error con el fetch', err)
|
||||||
);
|
);
|
||||||
|
@ -245,7 +245,7 @@ const RegistroComunicado = () => {
|
||||||
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
||||||
<i className="pi pi-pencil"></i>
|
<i className="pi pi-pencil"></i>
|
||||||
</span>
|
</span>
|
||||||
<InputTextarea value={comunicado.post} id="txt_comunicado" rows="4" />
|
<InputTextarea value={comunicado.post} id="txt_comunicado" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue