A space after icon of sunrise and sunset

This commit is contained in:
Szymon Bluma 2020-10-16 12:19:48 +02:00 committed by Szymon Bluma
parent 13c542aeda
commit 5781c258e0
No known key found for this signature in database
GPG Key ID: E7D92F6A1CC233B0
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -187,10 +187,10 @@ Module.register("clock", {
'"><i class="fa fa-sun-o" aria-hidden="true"></i> ' +
untilNextEventString +
"</span>" +
'<span><i class="fa fa-arrow-up" aria-hidden="true"></i>' +
'<span><i class="fa fa-arrow-up" aria-hidden="true"></i> ' +
formatTime(this.config, sunTimes.sunrise) +
"</span>" +
'<span><i class="fa fa-arrow-down" aria-hidden="true"></i>' +
'<span><i class="fa fa-arrow-down" aria-hidden="true"></i> ' +
formatTime(this.config, sunTimes.sunset) +
"</span>";
}