diff --git a/apps/client/src/widgets/view_widgets/table_view/index.ts b/apps/client/src/widgets/view_widgets/table_view/index.ts index f59a37fb0..0dd47b27a 100644 --- a/apps/client/src/widgets/view_widgets/table_view/index.ts +++ b/apps/client/src/widgets/view_widgets/table_view/index.ts @@ -219,8 +219,8 @@ export default class TableView extends ViewMode { } if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId || this.noteIds.includes(branch.parentNoteId ?? "")) - || loadResults.getNoteIds().some(noteId => this.noteIds.includes(noteId) - || loadResults.getAttributeRows().some(attr => this.noteIds.includes(attr.noteId!)))) { + || loadResults.getNoteIds().some(noteId => this.noteIds.includes(noteId)) + || loadResults.getAttributeRows().some(attr => this.noteIds.includes(attr.noteId!))) { return await this.#manageRowsUpdate(); }