Now using degree sign for temperatures.

This commit is contained in:
Marat Fayzullin 2025-01-14 21:26:12 -05:00
parent 7e427a6a80
commit f44e5e191d
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ AprsMarker.prototype.getInfoHTML = function(name, receiverMarker = null) {
weatherString += '<div>' + Utils.makeListTitle('Weather');
if (this.weather.temperature) {
weatherString += Utils.makeListItem('Temperature', this.weather.temperature.toFixed(1) + ' oC');
weatherString += Utils.makeListItem('Temperature', this.weather.temperature.toFixed(1) + '&deg;C');
}
if (this.weather.humidity) {