From 344fe0ef62c20053a87a9174d03f24a7ff3b6cfa Mon Sep 17 00:00:00 2001 From: karwosts Date: Fri, 16 Feb 2024 16:45:53 -0800 Subject: [PATCH] fix lint --- src/components/entity/ha-entity-picker.ts | 2 +- src/components/ha-target-picker.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/entity/ha-entity-picker.ts b/src/components/entity/ha-entity-picker.ts index 0210833227bf..e4c2c1329962 100644 --- a/src/components/entity/ha-entity-picker.ts +++ b/src/components/entity/ha-entity-picker.ts @@ -50,7 +50,7 @@ export class HaEntityPicker extends LitElement { @property() public helper?: string; - @property() public createDomains?: string[]; + @property({ type: Array }) public createDomains?: string[]; /** * Show entities from specific domains. diff --git a/src/components/ha-target-picker.ts b/src/components/ha-target-picker.ts index 8e6715a167d8..c20a465e442e 100644 --- a/src/components/ha-target-picker.ts +++ b/src/components/ha-target-picker.ts @@ -65,7 +65,7 @@ export class HaTargetPicker extends SubscribeMixin(LitElement) { @property() public helper?: string; - @property() public createDomains?: string[]; + @property({ type: Array }) public createDomains?: string[]; /** * Show only targets with entities from specific domains.