Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/mixins/EditorMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,12 @@ export default {
thisAndAllFuture = true
}

// If this is a new event, mark it as dirty so that it is saved even when no changes were made
// (e.g. when creating an event and immediately saving it without title etc.)
if (this.isNew) {
this.calendarObjectInstance.eventComponent.markDirty()
}

this.isLoading = true
this.isSaving = true
try {
Expand Down
Loading