Fix incompatible object/array property types (3 of 3) (#19510)

This commit is contained in:
Steve Repsher
2024-01-22 12:03:42 -05:00
committed by GitHub
parent 349344161a
commit 634122657c
56 changed files with 95 additions and 76 deletions

View File

@@ -71,7 +71,8 @@ export class HaSelector extends LitElement {
@property() public helper?: string;
@property() public localizeValue?: (key: string) => string;
@property({ attribute: false })
public localizeValue?: (key: string) => string;
@property() public placeholder?: any;
@@ -79,7 +80,7 @@ export class HaSelector extends LitElement {
@property({ type: Boolean }) public required = true;
@property() public context?: Record<string, any>;
@property({ attribute: false }) public context?: Record<string, any>;
public async focus() {
await this.updateComplete;