diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js
index 18cb2ac2..df2364a4 100644
--- a/modules/default/clock/clock.js
+++ b/modules/default/clock/clock.js
@@ -199,7 +199,7 @@ Module.register("clock", {
sunWrapper.innerHTML =
' ' +
+ '"> ' +
untilNextEventString +
"" +
' ' +
@@ -230,7 +230,7 @@ Module.register("clock", {
moonWrapper.innerHTML =
' ' +
+ '"> ' +
illuminatedFractionString +
"" +
' ' +
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index 5ebf1077..e8ced0bb 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -135,7 +135,7 @@ Module.register("currentweather", {
var windDirection = document.createElement("sup");
if (this.config.showWindDirectionAsArrow) {
if (this.windDeg !== null) {
- windDirection.innerHTML = ' ';
+ windDirection.innerHTML = ' ';
}
} else {
windDirection.innerHTML = " " + this.translate(this.windDirection);
diff --git a/modules/default/weather/current.njk b/modules/default/weather/current.njk
index 3d938b64..bfeb0b8f 100755
--- a/modules/default/weather/current.njk
+++ b/modules/default/weather/current.njk
@@ -15,7 +15,7 @@
{% if config.showWindDirection %}
{% if config.showWindDirectionAsArrow %}
-
+
{% else %}
{{ current.cardinalWindDirection() | translate }}
{% endif %}