summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz <ekaitz@elenq.tech>2023-01-30 11:59:41 +0100
committerEkaitz <ekaitz@elenq.tech>2023-01-30 11:59:41 +0100
commit4395b73d7b6ad3f45eb932cf914b3b6ef6adeae4 (patch)
tree1fd3f5ce0862e680d3ae078e317d4253b858d0c5
parentc6b3f66f4b672ace094728b0d4f4b043faf785e4 (diff)
Add degree symbol
-rw-r--r--js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/index.js b/js/index.js
index 0a41bf0..f2e2acf 100644
--- a/js/index.js
+++ b/js/index.js
@@ -82,8 +82,8 @@ function makeDay(date, t_max, t_min, weather){
<h2><time datetime="${date}">${(new Date(date)).toLocaleDateString(undefined, DATE_FORMAT)}</h2>
<p>${weather_desc}</p>
<ul>
- <li>Max: ${t_max}C</li>
- <li>Min: ${t_min}C</li>
+ <li>Max: ${t_max}&deg;C</li>
+ <li>Min: ${t_min}&deg;C</li>
</ul>
</div>
<span class="day-forecast-image" title="${weather_desc}">${WEATHER2ICON[weather]}</span>`