diff --git a/src/panels/lovelace/card-features/hui-area-controls-card-feature.ts b/src/panels/lovelace/card-features/hui-area-controls-card-feature.ts index 372a7c7fac..2f1826db6c 100644 --- a/src/panels/lovelace/card-features/hui-area-controls-card-feature.ts +++ b/src/panels/lovelace/card-features/hui-area-controls-card-feature.ts @@ -202,21 +202,6 @@ class HuiAreaControlsCardFeature const sectionConfig: LovelaceSectionConfig = { type: "grid", cards: [ - { - type: "heading", - heading: "Controls", - heading_style: "subtitle", - }, - ...entities.map((entity) => ({ - type: "tile", - entity: entity.entity_id, - features_position: "inline", - features: [ - { - type: "light-brightness", - }, - ], - })), { type: "heading", heading: "Actions", @@ -258,6 +243,21 @@ class HuiAreaControlsCardFeature columns: 6, }, } as ButtonCardConfig, + { + type: "heading", + heading: "Controls", + heading_style: "subtitle", + }, + ...entities.map((entity) => ({ + type: "tile", + entity: entity.entity_id, + features_position: "inline", + features: [ + { + type: "light-brightness", + }, + ], + })), ], };