diff --git a/apps/client/src/widgets/view_widgets/table_view/data.ts b/apps/client/src/widgets/view_widgets/table_view/data.ts index 0ed508622..9866fbb49 100644 --- a/apps/client/src/widgets/view_widgets/table_view/data.ts +++ b/apps/client/src/widgets/view_widgets/table_view/data.ts @@ -11,7 +11,6 @@ export type TableData = { labels: Record; relations: Record; branchId: string; - position: number; }; type ColumnType = LabelType | "relation"; @@ -94,10 +93,6 @@ export function buildColumnDefinitions(info: PromotedAttributeInformation[]) { field: "title", title: "Title", editor: "input" - }, - { - field: "position", - title: "Position" } ]; @@ -155,7 +150,6 @@ export async function buildRowDefinitions(parentNote: FNote, notes: FNote[], inf title: note.title, labels, relations, - position: branch.notePosition, branchId: branch.branchId }); }