mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 18:05:55 +01:00
fix(views/table): not reacting to title changes
This commit is contained in:
@@ -231,11 +231,9 @@ export default class TableView extends ViewMode<StateInfo> {
|
|||||||
this.#manageColumnUpdate();
|
this.#manageColumnUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId)) {
|
if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId)
|
||||||
this.#manageRowsUpdate();
|
|| loadResults.getNoteIds().some(noteId => this.args.noteIds.includes(noteId)
|
||||||
}
|
|| loadResults.getAttributeRows().some(attr => this.args.noteIds.includes(attr.noteId!)))) {
|
||||||
|
|
||||||
if (loadResults.getAttributeRows().some(attr => this.args.noteIds.includes(attr.noteId!))) {
|
|
||||||
this.#manageRowsUpdate();
|
this.#manageRowsUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,6 +67,5 @@ export default function getPromotedAttributeInformation(parentNote: FNote) {
|
|||||||
type
|
type
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
console.log("Promoted attribute information", info);
|
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user