diff --git a/src/panels/config/helpers/dialog-helper-detail.ts b/src/panels/config/helpers/dialog-helper-detail.ts
index ceb22dba63..55ca187975 100644
--- a/src/panels/config/helpers/dialog-helper-detail.ts
+++ b/src/panels/config/helpers/dialog-helper-detail.ts
@@ -1,3 +1,4 @@
+import { mdiAlertOutline } from "@mdi/js";
import "@material/mwc-button/mwc-button";
import type { CSSResultGroup, TemplateResult } from "lit";
import { css, html, LitElement, nothing } from "lit";
@@ -10,6 +11,7 @@ import "../../../components/ha-spinner";
import { createCloseHeading } from "../../../components/ha-dialog";
import "../../../components/ha-list-item";
import "../../../components/ha-tooltip";
+import "../../../components/ha-svg-icon";
import { getConfigFlowHandlers } from "../../../data/config_flow";
import { createCounter } from "../../../data/counter";
import { createInputBoolean } from "../../../data/input_boolean";
@@ -33,6 +35,7 @@ import { isHelperDomain } from "./const";
import type { ShowDialogHelperDetailParams } from "./show-dialog-helper-detail";
import { fireEvent } from "../../../common/dom/fire_event";
import { stringCompare } from "../../../common/string/compare";
+import { stopPropagation } from "../../../common/dom/stop_propagation";
type HelperCreators = Record<
HelperDomain,
@@ -208,39 +211,41 @@ export class DialogHelperDetail extends LitElement {
const isLoaded =
!(domain in HELPERS) || isComponentLoaded(this.hass, domain);
return html`
-
-
-
-
- ${label}
-
-
-
-
+
+ ${label}
+ ${isLoaded
+ ? html``
+ : html`
+
+ `}
+
`;
})}
@@ -408,6 +413,9 @@ export class DialogHelperDetail extends LitElement {
ha-icon-next {
width: 24px;
}
+ ha-tooltip {
+ pointer-events: auto;
+ }
.form {
padding: 24px;
}