Fix bug in non-recurring calendar event creation (#14854)

Co-authored-by: Bram Kragten <mail@bramkragten.nl>
fixes undefined
This commit is contained in:
Allen Porter 2022-12-22 08:14:30 -08:00 committed by GitHub
parent f41330a29b
commit 6bb350b5ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -387,7 +387,7 @@ class DialogCalendarEventEditor extends LitElement {
const data: CalendarEventMutableParams = {
summary: this._summary,
description: this._description,
rrule: this._rrule,
rrule: this._rrule || undefined,
dtstart: "",
dtend: "",
};