Skip to content

Commit 3461159

Browse files
committed
set Koala to default web theme
1 parent 95ee667 commit 3461159

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/helpermodules/update_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
from modules.devices.sungrow.sungrow.version import Version
4848
from modules.display_themes.cards.config import CardsDisplayTheme
4949
from modules.io_actions.controllable_consumers.ripple_control_receiver.config import RippleControlReceiverSetup
50-
from modules.web_themes.standard_legacy.config import StandardLegacyWebTheme
50+
from modules.web_themes.koala.config import KoalaWebTheme
5151
from modules.devices.good_we.good_we.version import GoodWeVersion
5252

5353
log = logging.getLogger(__name__)
@@ -569,7 +569,7 @@ class UpdateConfig:
569569
("openWB/general/prices/pv", Prices().pv),
570570
("openWB/general/range_unit", "km"),
571571
("openWB/general/temporary_charge_templates_active", False),
572-
("openWB/general/web_theme", dataclass_utils.asdict(StandardLegacyWebTheme())),
572+
("openWB/general/web_theme", dataclass_utils.asdict(KoalaWebTheme())),
573573
("openWB/graph/config/duration", 120),
574574
("openWB/internal_chargepoint/0/data/parent_cp", None),
575575
("openWB/internal_chargepoint/1/data/parent_cp", None),

packages/modules/web_themes/standard_legacy/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self,
1414
@auto_str
1515
class StandardLegacyWebTheme:
1616
def __init__(self,
17-
name: str = "Standard",
17+
name: str = "Classic",
1818
type: str = "standard_legacy",
1919
official: bool = True,
2020
configuration: StandardLegacyWebThemeConfiguration = None) -> None:

0 commit comments

Comments
 (0)