diff --git a/server/scripts/modules/extendedforecast.mjs b/server/scripts/modules/extendedforecast.mjs index 321b358..aa5b859 100644 --- a/server/scripts/modules/extendedforecast.mjs +++ b/server/scripts/modules/extendedforecast.mjs @@ -55,8 +55,8 @@ class ExtendedForecast extends WeatherDisplay { const fill = { icon: { type: 'img', src: Day.icon }, condition: Day.text, + date: Day.dayName, }; - fill.date = Day.dayName; const { low } = Day; if (low !== undefined) { diff --git a/server/scripts/modules/hourly-graph.mjs b/server/scripts/modules/hourly-graph.mjs index ea42dbf..eb7d9d7 100644 --- a/server/scripts/modules/hourly-graph.mjs +++ b/server/scripts/modules/hourly-graph.mjs @@ -8,7 +8,6 @@ import { DateTime } from '../vendor/auto/luxon.mjs'; class HourlyGraph extends WeatherDisplay { constructor(navId, elemId, defaultActive) { - // special height and width for scrolling super(navId, elemId, 'Hourly Graph', defaultActive); // move the top right data into the correct location on load