From 335ae0105fc346c5f94e5d2bf2668a472a6a36e2 Mon Sep 17 00:00:00 2001 From: Chris van Marle Date: Thu, 31 Aug 2017 18:36:52 +0200 Subject: [PATCH] Fix grunt errors --- .../default/weatherforecast/weatherforecast.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/default/weatherforecast/weatherforecast.js b/modules/default/weatherforecast/weatherforecast.js index 8ccf0f54..87fe40ae 100644 --- a/modules/default/weatherforecast/weatherforecast.js +++ b/modules/default/weatherforecast/weatherforecast.js @@ -143,15 +143,15 @@ Module.register("weatherforecast",{ var degreeLabel = ""; if(this.config.scale) { switch(this.config.units) { - case "metric": - degreeLabel = " °C"; - break; - case "imperial": - degreeLabel = " °F"; - break; - case "default": - degreeLabel = "K"; - break; + case "metric": + degreeLabel = " °C"; + break; + case "imperial": + degreeLabel = " °F"; + break; + case "default": + degreeLabel = "K"; + break; } }