From 1c6fa54f3a7d16476bcd8d92dec27d44da24b416 Mon Sep 17 00:00:00 2001 From: Eduardo Quiros Date: Tue, 30 Aug 2022 05:58:33 -0600 Subject: [PATCH] set post to empty when saving is done --- web-ui/web-react/src/components/RegistroComunicado.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 = () => { - +