mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 03:06:41 +00:00
Fix bug in non-recurring calendar event creation (#14854)
Co-authored-by: Bram Kragten <mail@bramkragten.nl> fixes undefined
This commit is contained in:
parent
f41330a29b
commit
6bb350b5ec
@ -387,7 +387,7 @@ class DialogCalendarEventEditor extends LitElement {
|
|||||||
const data: CalendarEventMutableParams = {
|
const data: CalendarEventMutableParams = {
|
||||||
summary: this._summary,
|
summary: this._summary,
|
||||||
description: this._description,
|
description: this._description,
|
||||||
rrule: this._rrule,
|
rrule: this._rrule || undefined,
|
||||||
dtstart: "",
|
dtstart: "",
|
||||||
dtend: "",
|
dtend: "",
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user