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

@@ -11,7 +11,7 @@ import "./ha-icon-button";
class HaMenuButton extends LitElement {
@property({ type: Boolean }) public hassio = false;
@property() public narrow!: boolean;
@property({ type: Boolean }) public narrow = false;
@property({ attribute: false }) public hass!: HomeAssistant;