Skip to content

Commit

Permalink
replace ° by '
Browse files Browse the repository at this point in the history
  • Loading branch information
lawern authored Jun 19, 2024
1 parent cabc4cf commit dce1fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/lcars/lcars.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ let getWeather = function(){
let weather = weatherJson.weather;

// Temperature
weather.temp = locale.temp(weather.temp-273.15).replace('°', ' ');
weather.temp = locale.temp(weather.temp-273.15).replace('°', '\'');

// Humidity
weather.hum = weather.hum + "%";
Expand Down

0 comments on commit dce1fcd

Please sign in to comment.