Skip to content

Commit

Permalink
Fix typo in property method (#5852)
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten committed May 13, 2020
1 parent f70130e commit 4c0810f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ha-cover-controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class HaCoverControls extends PolymerElement {
icon="hass:stop"
on-click="onStopTap"
invisible$="[[!entityObj.supportsStop]]"
disabled="[[computStopDisabled(stateObj)]]"
disabled="[[computeStopDisabled(stateObj)]]"
></ha-icon-button>
<ha-icon-button
aria-label="Close cover"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ha-cover-tilt-controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class HaCoverTiltControls extends PolymerElement {
icon="hass:stop"
on-click="onStopTiltTap"
invisible$="[[!entityObj.supportsStopTilt]]"
disabled="[[computStopDisabled(stateObj)]]"
disabled="[[computeStopDisabled(stateObj)]]"
title="Stop tilt"
></ha-icon-button>
<ha-icon-button
Expand Down

0 comments on commit 4c0810f

Please sign in to comment.