Skip to content

Commit

Permalink
fix: DRAFT article/note content not saved if content added after titl…
Browse files Browse the repository at this point in the history
…e - MEED-8447_MEED-8448 - Meeds-io/meeds#2968_Meeds-io/meeds#2970 (#1333)

Prior to this change, article/note content was neither saved nor updated
if the content was added after the title. This issue was caused by the
incorrect assignment of the variable noteContentInitialized, which was
always false. This change correctly binds the variable, resolving the
issue
  • Loading branch information
sofyenne authored Feb 14, 2025
1 parent 61e8cce commit 986690e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ export default {
change: function (evt) {
if (!self.noteContentInitialized || self.isContentImagesUploadProgress) {
// First time setting data
self.initialized = true;
self.noteContentInitialized = true;
return;
}
self.waitUserTyping(self);
Expand Down

0 comments on commit 986690e

Please sign in to comment.