You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of Home Assistant 2026.4, you can now register custom dashboard strategies, just as you can with [custom cards](/docs/frontend/custom-ui/custom-card), making them easier to discover and add using the **new dashboard** dialog under the **Community dashboards** section.
8
8
9
-
Before you could do this, but had to send users to create a blank dashboard, edit in YAML mode, and paste in your custom strategy. Now you can register a friendly name, description, documentation, and preview image.
9
+
Before you could do this, but had to send users to create a blank dashboard, edit in YAML mode, and paste in your custom strategy. Now you can register a friendly name, description, and documentation.
10
10
11
11
To register your strategy, call `window.customStrategies.push()` with an object containing the following keys:
12
12
@@ -15,7 +15,6 @@ To register your strategy, call `window.customStrategies.push()` with an object
15
15
-`name` (`optional`): The friendly name of the strategy.
16
16
-`description` (`optional`): A short description of the strategy.
17
17
-`documentationURL` (`optional`): A URL to the documentation for the strategy. This is not shown in the strategy UI yet but may in the future.
18
-
-`images` (`optional`): A preview image, either a single URL or a light/dark pair.
19
18
20
19
Example:
21
20
@@ -28,10 +27,6 @@ window.customStrategies.push({
28
27
name:"My demo dashboard",
29
28
description:"A starter dashboard generated from JavaScript.",
0 commit comments