Skip to content

Commit

Permalink
auto
Browse files Browse the repository at this point in the history
  • Loading branch information
zoernert committed Sep 12, 2024
1 parent a5e9609 commit b73f3f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stromampel.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h2>Stundenübersicht</h2>
const timeCell = row.insertCell(0);
const adviceCell = row.insertCell(1);
const itemTime = new Date(item.time);
timeCell.textContent = `${itemTime.getHours()}:00`;
timeCell.textContent = `${formatTime(itemTime)}`;
adviceCell.textContent = item.advice;
adviceCell.className = `table-cell-${item.advice}`;
});
Expand Down

0 comments on commit b73f3f7

Please sign in to comment.