Ensure calender event description can be edited (#14979)

This commit is contained in:
Philip Allgaier 2023-01-04 10:44:39 +01:00 committed by GitHub
parent 18a69d633f
commit b36eba0916
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class DialogCalendarEventEditor extends LitElement {
@state() private _summary = "";
@state() private _description = "";
@state() private _description? = "";
@state() private _rrule?: string;
@ -87,6 +87,7 @@ class DialogCalendarEventEditor extends LitElement {
const entry = params.entry!;
this._allDay = isDate(entry.dtstart);
this._summary = entry.summary;
this._description = entry.description;
this._rrule = entry.rrule;
if (this._allDay) {
this._dtstart = new Date(entry.dtstart + "T00:00:00");