From 32971cc875fcd90087041a3787775877c672b3de Mon Sep 17 00:00:00 2001 From: Cody C <50791984+codyc1515@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:41:37 +1300 Subject: [PATCH] Remove flag that sets icon as required when creating a new dashboard (#19640) Less friction to create a new dashboard. Moreover, an icon isn't actually required in order to create the dashboard anyway. See https://github.com/home-assistant/frontend/issues/19639 --- .../lovelace/dashboards/dialog-lovelace-dashboard-detail.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/lovelace/dashboards/dialog-lovelace-dashboard-detail.ts b/src/panels/config/lovelace/dashboards/dialog-lovelace-dashboard-detail.ts index dfa79b947b..4937da71ad 100644 --- a/src/panels/config/lovelace/dashboards/dialog-lovelace-dashboard-detail.ts +++ b/src/panels/config/lovelace/dashboards/dialog-lovelace-dashboard-detail.ts @@ -169,7 +169,7 @@ export class DialogLovelaceDashboardDetail extends LitElement { }, { name: "icon", - required: true, + required: false, selector: { icon: {}, },