diff --git a/packages/helpermodules/update_config.py b/packages/helpermodules/update_config.py index 8650124c05..b5b0379be2 100644 --- a/packages/helpermodules/update_config.py +++ b/packages/helpermodules/update_config.py @@ -47,7 +47,7 @@ from modules.devices.sungrow.sungrow.version import Version from modules.display_themes.cards.config import CardsDisplayTheme from modules.io_actions.controllable_consumers.ripple_control_receiver.config import RippleControlReceiverSetup -from modules.web_themes.standard_legacy.config import StandardLegacyWebTheme +from modules.web_themes.koala.config import KoalaWebTheme from modules.devices.good_we.good_we.version import GoodWeVersion log = logging.getLogger(__name__) @@ -569,7 +569,7 @@ class UpdateConfig: ("openWB/general/prices/pv", Prices().pv), ("openWB/general/range_unit", "km"), ("openWB/general/temporary_charge_templates_active", False), - ("openWB/general/web_theme", dataclass_utils.asdict(StandardLegacyWebTheme())), + ("openWB/general/web_theme", dataclass_utils.asdict(KoalaWebTheme())), ("openWB/graph/config/duration", 120), ("openWB/internal_chargepoint/0/data/parent_cp", None), ("openWB/internal_chargepoint/1/data/parent_cp", None), diff --git a/packages/modules/web_themes/standard_legacy/config.py b/packages/modules/web_themes/standard_legacy/config.py index 36af656961..72aee4ae8e 100644 --- a/packages/modules/web_themes/standard_legacy/config.py +++ b/packages/modules/web_themes/standard_legacy/config.py @@ -14,7 +14,7 @@ def __init__(self, @auto_str class StandardLegacyWebTheme: def __init__(self, - name: str = "Standard", + name: str = "Classic", type: str = "standard_legacy", official: bool = True, configuration: StandardLegacyWebThemeConfiguration = None) -> None: