From 46fa50b4d951f16ee98f6d343cc3228a269182a0 Mon Sep 17 00:00:00 2001 From: Maximilian Martin Date: Sun, 28 Jun 2026 19:19:46 +0000 Subject: [PATCH] fix(chore): save new event even with empty title Signed-off-by: Maximilian Martin --- src/mixins/EditorMixin.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mixins/EditorMixin.js b/src/mixins/EditorMixin.js index 287bb24d61..b0e80ce896 100644 --- a/src/mixins/EditorMixin.js +++ b/src/mixins/EditorMixin.js @@ -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 {