We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3dda72 commit cad3316Copy full SHA for cad3316
1 file changed
static/js/script.js
@@ -953,10 +953,7 @@ function showShapError(message) {
953
}
954
955
function getTodayForecastPoint(forecastData) {
956
-
957
const todayStr = new Date().toISOString().split("T")[0];
958
- // → ergibt z.B. "2026-03-17"
959
960
return forecastData.find(d => d.date === todayStr);
961
962
@@ -1150,7 +1147,7 @@ async function loadForecast() {
1150
1147
const todayPoint = getTodayForecastPoint(data.forecast) || data.forecast[0];
1151
1148
if (todayPoint) {
1152
1149
showShapDetails(todayPoint);
1153
- document.getElementById("card-shap")?.style.display = "block";
+ document.getElementById("card-shap-details")?.style.display = "block";
1154
};
1155
1156
0 commit comments