mirror of
https://github.com/zadam/trilium.git
synced 2026-05-09 15:07:49 +02:00
chore(core): fix type error in getFlatText
This commit is contained in:
@@ -775,7 +775,7 @@ class BNote extends AbstractBeccaEntity<BNote> {
|
||||
*
|
||||
* @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<BNote> {
|
||||
this.__flatTextCache = utils.normalize(this.__flatTextCache);
|
||||
}
|
||||
|
||||
return this.__flatTextCache;
|
||||
return this.__flatTextCache as string;
|
||||
}
|
||||
|
||||
invalidateThisCache() {
|
||||
|
||||
Reference in New Issue
Block a user