Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/DataTable/useTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,6 @@ export function useTable<Data extends UniqueRow>({
}
}

// Update the row order and apply the current sort column to the incoming data
if (data !== prevData) {
setPrevData(data)
setRowOrder(data)
if (sortByColumn) {
sortRows(sortByColumn)
}
}

const headers = columns.map(column => {
const id = column.id ?? column.field
if (id === undefined) {
Expand All @@ -102,6 +93,15 @@ export function useTable<Data extends UniqueRow>({
}
})

// Update the row order and apply the current sort column to the incoming data
if (data !== prevData) {
setPrevData(data)
setRowOrder(data)
if (sortByColumn) {
sortRows(sortByColumn)
}
}

/**
* Sort the input row data by the given header
*/
Expand Down