Skip to content

Commit

Permalink
fix: Change mdi:timer* to mdi:timer*-outline in prep for HA 0.115 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage authored Aug 30, 2020
1 parent a41e880 commit 9f019b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/entity_controller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,11 +387,11 @@ def icon(self):
if self.model.state == "active":
return "mdi:check-circle"
if self.model.state == "active_timer":
return "mdi:timer"
return "mdi:timer-outline"
if self.model.state == "constrained":
return "mdi:cancel"
if self.model.state == "overridden":
return "mdi:timer-off"
return "mdi:timer-off-outline"
if self.model.state == "blocked":
return "mdi:close-circle"
return "mdi:eye"
Expand Down

0 comments on commit 9f019b8

Please sign in to comment.