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

@@ -54,9 +54,9 @@ export class HaDateRangePicker extends LitElement {
@state() private _ranges?: DateRangePickerRanges;
@property() public autoApply = false;
@property({ type: Boolean }) public autoApply = false;
@property() public timePicker = true;
@property({ type: Boolean }) public timePicker = true;
@property({ type: Boolean }) public disabled = false;