fix: Import ha-expansion-panel in ha-form-expandable (#26996)

fix: Import ha-expansion-panel in ha-form-expandable

The current usages of ha-form-expandable only work correctly because
ha-expansion-panel is already imported somewhere else by coincidence.

This adds an explicit import to avoid breakages when using
ha-form-expandable in a standalone context (e.g. within ./hassio).
This commit is contained in:
Lukas Waslowski
2025-09-10 21:37:37 +02:00
committed by GitHub
parent 89c43b2b33
commit 3bfafc794f

View File

@@ -2,6 +2,7 @@ import { css, html, LitElement, nothing } from "lit";
import { customElement, property } from "lit/decorators"; import { customElement, property } from "lit/decorators";
import type { HomeAssistant } from "../../types"; import type { HomeAssistant } from "../../types";
import "./ha-form"; import "./ha-form";
import "../ha-expansion-panel";
import type { import type {
HaFormDataContainer, HaFormDataContainer,
HaFormElement, HaFormElement,