Skip to content

Commit

Permalink
Default plans table sorting to descending IDs (#1185)
Browse files Browse the repository at this point in the history
* fix default plans table default sorting so that newly added plans appear at the top
  • Loading branch information
duranb authored Mar 26, 2024
1 parent 57b82cd commit 4a0d28a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/plans/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@
filter: 'number',
headerName: 'ID',
resizable: true,
sort: 'desc',
sortable: true,
suppressAutoSize: true,
suppressSizeToFit: true,
width: 60,
width: 75,
},
{ field: 'name', filter: 'text', headerName: 'Name', resizable: true, sortable: true },
{
Expand Down

0 comments on commit 4a0d28a

Please sign in to comment.