Fix incompatible boolean property types (#19337)

This commit is contained in:
Steve Repsher
2024-01-09 09:02:15 -05:00
committed by GitHub
parent 8583c879f2
commit 96a41704ea
82 changed files with 124 additions and 124 deletions

View File

@@ -20,7 +20,7 @@ import type { HomeAssistant } from "../../../../types";
class HaInputSelectForm extends LitElement {
@property({ attribute: false }) public hass!: HomeAssistant;
@property() public new?: boolean;
@property({ type: Boolean }) public new = false;
private _item?: InputSelect;