diff --git a/dist/icons/arrow-north-static.svg b/dist/icons/arrow-north-static.svg new file mode 100644 index 0000000..db32a62 --- /dev/null +++ b/dist/icons/arrow-north-static.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/dist/icons/no-wind-bearing-static.svg b/dist/icons/no-wind-bearing-static.svg new file mode 100644 index 0000000..c32fbbf --- /dev/null +++ b/dist/icons/no-wind-bearing-static.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dist/meteofrance-weather-card.js b/dist/meteofrance-weather-card.js index c769572..c36f989 100644 --- a/dist/meteofrance-weather-card.js +++ b/dist/meteofrance-weather-card.js @@ -530,6 +530,20 @@ class MeteofranceWeatherCard extends LitElement { ` : ""} + ${this._config.wind_forecast_icons && daily.wind_bearing !== undefined && daily.wind_bearing !== null + ? html` +
  • +
  • + ` + : ""} + ${this._config.wind_forecast_icons && daily.wind_bearing !== undefined && daily.wind_bearing == null + ? html` +
  • +
  • + ` + : ""} `; }