diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-02-08 19:56:09 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-02-08 19:56:09 +0100 |
commit | 437b88849c512076d3f0c10f614335092474135a (patch) | |
tree | 62a6344a2af27ffa99f1a76f83a11721db5c926f /js | |
parent | 4395b73d7b6ad3f45eb932cf914b3b6ef6adeae4 (diff) |
Correct wrong symbol in CLEAR_SKY
Diffstat (limited to 'js')
-rw-r--r-- | js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/index.js b/js/index.js index f2e2acf..69fbe78 100644 --- a/js/index.js +++ b/js/index.js @@ -23,7 +23,7 @@ const WEATHERS = [ // We can use some symbols from here: // https://www.alt-codes.net/weather-symbols.php const WEATHER2ICON = { - CLEAR_SKY: "$#x2600;", + CLEAR_SKY: "☀", MAINLY_CLEAR: "🌤", FOG: "🌫", DRIZZLE: "🌦", |