Initialize boolean properties (#19445)

This commit is contained in:
Steve Repsher
2024-01-18 10:39:33 -05:00
committed by GitHub
parent 04f6a01c3d
commit 6234f7b7d2
112 changed files with 155 additions and 155 deletions

View File

@@ -41,9 +41,9 @@ export class HaEntityPicker extends LitElement {
@property({ type: Boolean }) public autofocus = false;
@property({ type: Boolean }) public disabled?: boolean;
@property({ type: Boolean }) public disabled = false;
@property({ type: Boolean }) public required?: boolean;
@property({ type: Boolean }) public required = false;
@property({ type: Boolean, attribute: "allow-custom-entity" })
public allowCustomEntity;