Remove beat (internet time) from time_date (#119785)

This commit is contained in:
G Johansson 2024-06-17 05:36:06 +02:00 committed by GitHub
parent fc3fbc6862
commit bd37ce6e9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 124 deletions

View file

@ -35,7 +35,7 @@ USER_SCHEMA = vol.Schema(
{
vol.Required(CONF_DISPLAY_OPTIONS): SelectSelector(
SelectSelectorConfig(
options=[option for option in OPTION_TYPES if option != "beat"],
options=OPTION_TYPES,
mode=SelectSelectorMode.DROPDOWN,
translation_key="display_options",
)