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