This commit is contained in:
tamaina 2023-08-09 02:12:21 +00:00
parent 4ff9390194
commit 79d12d1ceb
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ export class NoteManager {
} else {
if (this.isDebuggerEnabled) console.log('NoteManager: get note (cached)', id, this.notesComputed.get(id), this.notesSource.get(id)?.value);
}
return this.notesComputed.get(id)!;
return computed(() => this.notesComputed.get(id)!.value);
}
/**