mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 19:26:36 +00:00
Fix days missing from ha-base-time-input _valueChanged (#14910)
* Fix days missing from ha-base-time-input _valueChanged * style change
This commit is contained in:
parent
5c2fcd7f9b
commit
a9378abe31
@ -266,6 +266,9 @@ export class HaBaseTimeInput extends LitElement {
|
|||||||
seconds: this.seconds,
|
seconds: this.seconds,
|
||||||
milliseconds: this.milliseconds,
|
milliseconds: this.milliseconds,
|
||||||
};
|
};
|
||||||
|
if (this.enableDay) {
|
||||||
|
value.days = this.days;
|
||||||
|
}
|
||||||
if (this.format === 12) {
|
if (this.format === 12) {
|
||||||
value.amPm = this.amPm;
|
value.amPm = this.amPm;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user