fix(views/table): not reacting to external attribute changes

This commit is contained in:
Elian Doran 2025-07-19 14:02:19 +03:00
parent ebff644d24
commit 9dd0eb7b9b
No known key found for this signature in database

View File

@ -219,8 +219,8 @@ export default class TableView extends ViewMode<StateInfo> {
} }
if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId || this.noteIds.includes(branch.parentNoteId ?? "")) if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId || this.noteIds.includes(branch.parentNoteId ?? ""))
|| loadResults.getNoteIds().some(noteId => this.noteIds.includes(noteId) || loadResults.getNoteIds().some(noteId => this.noteIds.includes(noteId))
|| loadResults.getAttributeRows().some(attr => this.noteIds.includes(attr.noteId!)))) { || loadResults.getAttributeRows().some(attr => this.noteIds.includes(attr.noteId!))) {
return await this.#manageRowsUpdate(); return await this.#manageRowsUpdate();
} }