diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 11:29:59 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 11:30:06 +0200 |
commit | 59c31c328852ed671d8e7cc3d3c1bb8321e49708 (patch) | |
tree | bf441a7bdcd0bee72e6517bae0701b689114d87a | |
parent | 3f739c808de198e1eac862e6d078b3d151606c27 (diff) |
fix: insert space between forecast symbol and temperatures
-rw-r--r-- | app/Sensor.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Sensor.hs b/app/Sensor.hs index 0b1ab0a..08f4f11 100644 --- a/app/Sensor.hs +++ b/app/Sensor.hs @@ -454,7 +454,7 @@ weatherForecast = do Nothing -> airTemperature Just (Next6Hours {summary, details}) -> - mconcat $ intersperse (P.pretty " ") [symbol, tempMax, tempMin, airTemperature] + mconcat $ intersperse (P.pretty " ") [mconcat [symbol, P.pretty " "], tempMax, tempMin, airTemperature] where symbol = P.pretty |