Update lcars.app.js

.replace('°', ' ');
master
Lars Werner 2024-06-19 14:29:27 +02:00 committed by GitHub
parent 7069440e47
commit 7d75f9a0f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -678,7 +678,7 @@ let getWeather = function(){
let weather = weatherJson.weather;
// Temperature
weather.temp = locale.temp(weather.temp-273.15);
weather.temp = locale.temp(weather.temp-273.15).replace('°', ' ');
// Humidity
weather.hum = weather.hum + "%";