no message

This commit is contained in:
2026-06-16 10:57:40 +02:00
parent bc50640a6f
commit 644670adb2
+3 -3
View File
@@ -193,9 +193,9 @@ function render(data){
`;
};
const prod = v.Produktion || 0;
const grid = v.Netz || 0;
const feed = v.Einspeisung || 0;
const prod = Number(v.Produktion) || 0;
const cons = Number(v.Hausverbrauch) || 0;
const grid = Number(v.Netz) || 0;
const eigen = Math.max(cons - grid, 0);
elGrid.innerHTML =