add comment

This commit is contained in:
tamaina 2023-08-06 16:33:17 +00:00
parent bd98c3e3fd
commit 2d0d87c8c0
1 changed files with 4 additions and 0 deletions

View File

@ -306,6 +306,10 @@ export class NoteManager {
if (this.isDebuggerEnabled) console.log('NoteManager: onStreamNoteUpdated (found)', id, note.value, { type, id, body });
}
/**
* note.valueを直接いじるとcomputedが更新されない場合があるため
* diffで上書きする形で更新する
*/
const diff: Partial<OmittedNote> = {};
switch (type) {