diff --git a/web-ui/web-react/src/components/RegistroComunicado.js b/web-ui/web-react/src/components/RegistroComunicado.js index cca51f78..6a2fe463 100644 --- a/web-ui/web-react/src/components/RegistroComunicado.js +++ b/web-ui/web-react/src/components/RegistroComunicado.js @@ -74,7 +74,7 @@ const RegistroComunicado = () => { err => console.log('Ocurrió un error con el fetch', err) ); } else { - let data = { + const data = { _id: comunicado._id, post: document.getElementById('txt_comunicado').value, user_id: cookies.id, @@ -89,12 +89,12 @@ const RegistroComunicado = () => { 'Content-Type': 'application/json' } }).then((response) => { - if (response.status != 201) + if (response.status != 200) console.log('Ocurrió un error con el servicio: ' + response.status); else return response.json(); }).then((_response) => { - + setComunicado(emptyComunicado); }).catch( err => console.log('Ocurrió un error con el fetch', err) ); @@ -245,7 +245,7 @@ const RegistroComunicado = () => { - +