diff --git a/ui/uc-src/modules/contents/posts/PostEditor.vue b/ui/uc-src/modules/contents/posts/PostEditor.vue index cf2d52467..48a4bc40e 100644 --- a/ui/uc-src/modules/contents/posts/PostEditor.vue +++ b/ui/uc-src/modules/contents/posts/PostEditor.vue @@ -168,8 +168,8 @@ const { ); useAutoSaveContent(currentCache, toRef(content.value, "raw"), async () => { - // Do not save when the setting modal is open - if (postSettingEditModal.value) { + // Do not save when the setting modal or the creation modal is open + if (postSettingEditModal.value || postPublishModal.value) { return; } if (isUpdateMode.value) {