fix cyclyc update

This commit is contained in:
Фролов 2021-06-01 14:26:15 +05:00
parent 1f93fded9f
commit 26abf3a834

View File

@ -37,17 +37,17 @@ export default function Wells(props){
setLoader(true)
try{
let newWells = (await WellService.getWells()).map(w =>{return {key:w.id, ...w}})
console.log(Wells.wellsTree)
console.log(newWells)
setWells( newWells )
}
catch(e){
notify('Не удалось загрузить список скважин', 'error')
console.error(`${e.message}`);
console.error(`${e}`);
}
setLoader(false)
}
useEffect(()=>updateWellsList())
useEffect(()=>updateWellsList(), [])
return(<>
<h2>Скважины</h2>