From f9d28fc124121b8bee4cac00ba0cc404206b3cdb Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Fri, 8 Jan 2021 11:10:39 +0100 Subject: [PATCH] Add blank between temperature and unit in weather card (#8111) --- src/panels/lovelace/cards/hui-weather-forecast-card.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/cards/hui-weather-forecast-card.ts b/src/panels/lovelace/cards/hui-weather-forecast-card.ts index 156e76d3a7..58131756b9 100644 --- a/src/panels/lovelace/cards/hui-weather-forecast-card.ts +++ b/src/panels/lovelace/cards/hui-weather-forecast-card.ts @@ -219,7 +219,7 @@ class HuiWeatherForecastCard extends LitElement implements LovelaceCard { ${formatNumber( stateObj.attributes.temperature, this.hass!.language - )}${getWeatherUnit(this.hass, "temperature")} + )} ${getWeatherUnit(this.hass, "temperature")}
${this._config.secondary_info_attribute !== undefined