Fix property visibility mismatches (2 of 2) (#19448)

This commit is contained in:
Steve Repsher
2024-01-19 03:39:41 -05:00
committed by GitHub
parent fcc9a80103
commit 24bfa4919a
27 changed files with 113 additions and 108 deletions

View File

@@ -61,11 +61,11 @@ export class HaDateRangePicker extends LitElement {
@property({ type: Boolean }) public disabled = false;
@property({ type: Boolean }) private _hour24format = false;
@property({ type: Boolean }) public minimal = false;
@property({ type: String }) private _rtlDirection = "ltr";
@state() private _hour24format = false;
@property({ type: Boolean }) private minimal = false;
@state() private _rtlDirection = "ltr";
@property({ type: Boolean }) public extendedPresets = false;