chore(views/table): set row ID as index

This commit is contained in:
Elian Doran
2025-06-28 22:49:40 +03:00
parent 0e27cd0801
commit a31ac17792

View File

@@ -94,6 +94,7 @@ export default class TableView extends ViewMode<StateInfo> {
const info = getPromotedAttributeInformation(this.parentNote);
this.api = new Tabulator(el, {
index: "noteId",
columns: buildColumnDefinitions(info),
data: await buildRowDefinitions(this.parentNote, notes, info)
});