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

@@ -61,7 +61,7 @@ export class HaStateLabelBadge extends LitElement {
@property() public image?: string;
@property() public showName?: boolean;
@property({ type: Boolean }) public showName = false;
@state() private _timerTimeRemaining?: number;