Skip to content

Commit

Permalink
small html bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorYbema committed Sep 1, 2024
1 parent 499557a commit 8f450d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HeishaMon/htmlcode.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ static const char refreshJS[] PROGMEM =
" tableBody.appendChild(row);"
" });"
" }"
" if (jsonData?.['heatpump extra'] && Array.isArray(jsonData['heatpump extra])) {"
" if (jsonData?.['heatpump extra'] && Array.isArray(jsonData['heatpump extra'])) {"
" const tableBody = document.getElementById('heishavalues');"
" jsonData['heatpump extra].forEach(item => {"
" jsonData['heatpump extra'].forEach(item => {"
" const row = document.createElement('tr');"
" for (const key in item) {"
" if (Object.hasOwn(item,key)) {"
Expand Down

0 comments on commit 8f450d7

Please sign in to comment.