diff --git a/CHANGELOG.md b/CHANGELOG.md index 82fc88fa..5132d110 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ _This release is scheduled to be released on 2021-01-01._ - Wrong node-ical version installed (package.json) requested version. (#2153) - Fix calendar fetcher subsequent timing (#2160) - Rename Greek translation to correct ISO 639-1 alpha-2 code (gr > el). (#2155) +- Add a space after icons of sunrise and sunset (#2169) ## [2.13.0] - 2020-10-01 diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js index 1c7109b6..6e3d7090 100644 --- a/modules/default/clock/clock.js +++ b/modules/default/clock/clock.js @@ -187,10 +187,10 @@ Module.register("clock", { '"> ' + untilNextEventString + "" + - '' + + ' ' + formatTime(this.config, sunTimes.sunrise) + "" + - '' + + ' ' + formatTime(this.config, sunTimes.sunset) + ""; }