Skip to content

Commit

Permalink
fix: precipitation line #2
Browse files Browse the repository at this point in the history
  • Loading branch information
chilikla authored Dec 1, 2024
1 parent 9f42e00 commit e14b96b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/card/yerushamayim-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class YerushamayimCard extends LitElement {
<div class="block">
<bdi>${this.statusState.attributes.forecast}</bdi>
</div>
${Number(this.precipitationState.attributes.precipitation_probability) === 0
${Number(this.precipitationState.attributes.precipitation_probability) > 0
? html`<div class="precipitation">
<span>סיכוי לגשם: </span>
<bdi>${this.precipitationState.attributes.precipitation_probability}%</bdi>
Expand Down

0 comments on commit e14b96b

Please sign in to comment.