limpiar strings
This commit is contained in:
parent
7d0bf63b22
commit
19620aabcc
|
@ -89,7 +89,7 @@ const GuardasSeguridad = () => {
|
||||||
}
|
}
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
if (response.status != 201)
|
if (response.status != 201)
|
||||||
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(() => {
|
}).then(() => {
|
||||||
|
@ -121,10 +121,10 @@ const GuardasSeguridad = () => {
|
||||||
}
|
}
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
if (response.status != 201)
|
if (response.status != 201)
|
||||||
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(() => {
|
||||||
setChangeStatusGuardDialog(false);
|
setChangeStatusGuardDialog(false);
|
||||||
toast.current.show({
|
toast.current.show({
|
||||||
severity: 'success',
|
severity: 'success',
|
||||||
|
@ -147,7 +147,7 @@ const GuardasSeguridad = () => {
|
||||||
}
|
}
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
if (response.status != 201)
|
if (response.status != 201)
|
||||||
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(function() {
|
}).then(function() {
|
||||||
|
|
Loading…
Reference in New Issue