feat(views/table): react to external attribute changes

This commit is contained in:
Elian Doran 2025-07-04 18:05:24 +03:00
parent 4ac7b6e9e8
commit 854969e1b8
No known key found for this signature in database

View File

@ -227,6 +227,10 @@ export default class TableView extends ViewMode<StateInfo> {
this.#manageRowsUpdate();
}
if (loadResults.getAttributeRows().some(attr => this.args.noteIds.includes(attr.noteId!))) {
this.#manageRowsUpdate();
}
return false;
}