We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d207f5 commit cfabcc6Copy full SHA for cfabcc6
src/panels/calendar/dialog-calendar-event-editor.ts
@@ -105,7 +105,7 @@ class DialogCalendarEventEditor extends LitElement {
105
this._description = entry.description;
106
if (entry.location) {
107
this._hasLocation = true;
108
- this._location = entry.location || "";
+ this._location = entry.location;
109
}
110
this._rrule = entry.rrule;
111
if (this._allDay) {
@@ -345,8 +345,8 @@ class DialogCalendarEventEditor extends LitElement {
345
this._description = ev.target.value;
346
347
348
- private _handleLocationChanged(ev) {
349
- this._location = ev.target.value;
+ private _handleLocationChanged(ev: Event) {
+ this._location = (ev.target as HTMLInputElement).value;
350
351
352
private _handleRRuleChanged(ev) {
0 commit comments