mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 10:59:50 +00:00
Fix incompatible boolean property types (#19337)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user