diff --git a/src/entities/note.js b/src/entities/note.js index 05ee5a0a5..a206b5caa 100644 --- a/src/entities/note.js +++ b/src/entities/note.js @@ -106,7 +106,7 @@ class Note extends Entity { /** @returns {Promise} */ async setJsonContent(content) { - await this.setContent(JSON.stringify(content)); + await this.setContent(JSON.stringify(content, null, '\t')); } /** @returns {boolean} true if this note is the root of the note tree. Root note has "root" noteId */