diff --git a/packages/trilium-core/src/becca/entities/bnote.ts b/packages/trilium-core/src/becca/entities/bnote.ts index ea3c60803..3d9a9fe2c 100644 --- a/packages/trilium-core/src/becca/entities/bnote.ts +++ b/packages/trilium-core/src/becca/entities/bnote.ts @@ -775,7 +775,7 @@ class BNote extends AbstractBeccaEntity { * * @returns - returns flattened textual representation of note, prefixes and attributes */ - getFlatText() { + getFlatText(): string { if (!this.__flatTextCache) { this.__flatTextCache = `${this.noteId} ${this.type} ${this.mime} `; @@ -801,7 +801,7 @@ class BNote extends AbstractBeccaEntity { this.__flatTextCache = utils.normalize(this.__flatTextCache); } - return this.__flatTextCache; + return this.__flatTextCache as string; } invalidateThisCache() {