Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
disable reboot button by default
  • Loading branch information
briodan authored Jun 8, 2024
1 parent adb570a commit 538dcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/monitor_docker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
vol.Optional(CONF_SWITCHENABLED, default=True): vol.Any(
cv.boolean, cv.ensure_list(cv.string)
),
vol.Optional(CONF_BUTTONENABLED, default=True): vol.Any(
vol.Optional(CONF_BUTTONENABLED, default=False): vol.Any(
cv.boolean, cv.ensure_list(cv.string)
),
vol.Optional(CONF_SWITCHNAME, default=DEFAULT_SWITCHNAME): cv.string,
Expand Down

0 comments on commit 538dcae

Please sign in to comment.