Skip to content

Commit

Permalink
Allow click on zone text to expand
Browse files Browse the repository at this point in the history
  • Loading branch information
rgc99 committed Jul 21, 2024
1 parent 1cc062e commit b9c58b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/irrigation-unlimited-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ let IrrigationUnlimitedCard = class IrrigationUnlimitedCard extends s {
<div class="iu-td2" @click="${this._toggleCollapse}">
<ha-icon .icon=${stateObj.attributes.icon}></ha-icon>
</div>
<div class="iu-td3">
<div class="iu-td3" @click="${this._toggleCollapse}">
<span style="color: ${this._selectColour(zone.index)}"
>${zone.id1}</span
>
Expand Down
2 changes: 1 addition & 1 deletion src/irrigation-unlimited-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export class IrrigationUnlimitedCard extends LitElement {
<div class="iu-td2" @click="${this._toggleCollapse}">
<ha-icon .icon=${stateObj.attributes.icon}></ha-icon>
</div>
<div class="iu-td3">
<div class="iu-td3" @click="${this._toggleCollapse}">
<span style="color: ${this._selectColour(zone.index)}"
>${zone.id1}</span
>
Expand Down

0 comments on commit b9c58b2

Please sign in to comment.