*** WIP WIP *** All charts work (mostly)

This commit is contained in:
rxf
2023-03-31 17:38:26 +02:00
parent 126acfeb7f
commit aeeb660823
4 changed files with 333 additions and 58 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ export async function getSensorData(params) {
// distribute to the right routine
for(let item of sensorTypeTable) {
if(item.typ === erg.props.type) {
ret = item.func(params, item.possibleParams, erg.props) // get the values from database
ret = await item.func(params, item.possibleParams, erg.props) // get the values from database
return ret
}
}