We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12d766 commit 278feb9Copy full SHA for 278feb9
custom_components/remote_homeassistant/config_flow.py
@@ -208,7 +208,7 @@ def __init__(self, config_entry):
208
async def async_step_init(self, user_input=None):
209
"""Manage basic options."""
210
if self.config_entry.unique_id == REMOTE_ID:
211
- return
+ return self.async_abort(reason="not_supported")
212
213
if user_input is not None:
214
self.options = user_input.copy()
custom_components/remote_homeassistant/translations/en.json
@@ -78,6 +78,9 @@
78
"add_new_event": "Add new event"
79
}
80
81
+ },
82
+ "abort": {
83
+ "not_supported": "No configuration options supported for a remote node"
84
85
86
0 commit comments