diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js
index 4eb7a6d3..6022998e 100644
--- a/modules/default/clock/clock.js
+++ b/modules/default/clock/clock.js
@@ -161,7 +161,7 @@ Module.register("clock",{
if (this.config.showSunTimes) {
const sunTimes = SunCalc.getTimes(now, this.config.lat, this.config.lon);
const isVisible = now.isBetween(sunTimes.sunrise, sunTimes.sunset);
- sunWrapper.innerHTML = '' +
+ sunWrapper.innerHTML = '' +
'' + formatTime(this.config, sunTimes.sunrise) + '' +
'' + formatTime(this.config, sunTimes.sunset) + '';
}
@@ -169,7 +169,7 @@ Module.register("clock",{
const moonIllumination = SunCalc.getMoonIllumination(now.toDate());
const moonTimes = SunCalc.getMoonTimes(now, this.config.lat, this.config.lon);
const isVisible = now.isBetween(moonTimes.rise, moonTimes.set);
- moonWrapper.innerHTML = ' ' + moonIllumination.fraction.toLocaleString(undefined, {style: 'percent'}) + '' +
+ moonWrapper.innerHTML = ' ' + moonIllumination.fraction.toLocaleString(undefined, {style: 'percent'}) + '' +
' ' + formatTime(this.config, moonTimes.rise) + ''+
' ' + formatTime(this.config, moonTimes.set) + '';
}