Skip to content

Commit

Permalink
Fix missing weather icon when condition is rain with amber rainstorm(…
Browse files Browse the repository at this point in the history
…thunderstorm) warning
  • Loading branch information
aes-alienrip authored Sep 7, 2024
1 parent ad6dc73 commit 9699fad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/hko-weather-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {

// #### Add card info to console
console.info(
`%cHKO-WEATHER-CARD\n%cVersion 1.2.1 `,
`%cHKO-WEATHER-CARD\n%cVersion 1.2.1b `,
"color: #043ff6; font-weight: bold; background: white",
"color: white; font-weight: bold; background: #043ff6"
);
Expand Down Expand Up @@ -630,7 +630,7 @@ class HKOWeatherCard extends LitElement {
var cloudy_icon = `cloudy${this.wts}`;
var overcast_icon = `overcast${this.wts}`;
var light_rain_icon = `light-rain${this.wts}`;
var rain_icon = `rain-2${this.wrain}${this.wts}`;
var rain_icon = `rain${this.wrain}${this.wts}`;
var heavy_rain_icon = `heavy-rain${this.wrain}${this.wts}`;
var thunderstorms_icon = `thunderstorms${this.wrain}`;
var moon_new_icon = `moon-new`;
Expand Down

0 comments on commit 9699fad

Please sign in to comment.