Skip to content

Commit

Permalink
Fix issue with new Select options
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-bar committed Nov 3, 2022
1 parent 5757514 commit 0c9f8ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.17

- Fix issue with new Select options

## 2.0.16

**Version requires HA v2022.11.0 and above**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def _load_select_component(self, monitor: MonitorData, device_name: str):
name=entity_name,
icon=icon,
device_class=f"{DOMAIN}__{ATTR_MONITOR_MODE}",
options=ICON_MONITOR_MODES.keys(),
options=list(ICON_MONITOR_MODES.keys()),
entity_category=EntityCategory.CONFIG
)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/shinobi/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"codeowners": ["@elad-bar"],
"requirements": [ ],
"config_flow": true,
"version": "2.0.16",
"version": "2.0.17",
"iot_class": "local_polling"
}

0 comments on commit 0c9f8ac

Please sign in to comment.