mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 02:49:51 +00:00
Fix incompatible object/array property types (3 of 3) (#19510)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user