We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3967097 commit 3db46b2Copy full SHA for 3db46b2
1 file changed
src/features/dashboard/templates/list/table.tsx
@@ -59,7 +59,7 @@ export default function TemplatesTable() {
59
// Derive the single server sort token from the active sort column + direction.
60
const sortColumn = sorting[0]
61
const sortBase =
62
- (sortColumn && COLUMN_TO_SORT_BASE[sortColumn.id]) ?? 'updated_at'
+ (sortColumn && COLUMN_TO_SORT_BASE[sortColumn.id]) ?? 'created_at'
63
const sort =
64
`${sortBase}_${sortColumn?.desc === false ? 'asc' : 'desc'}` as TemplatesSort
65
0 commit comments