Skip to content

Commit

Permalink
fix: Keep table search default sort by name
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm committed Dec 9, 2022
1 parent a3b638f commit def3a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion querybook/webapp/redux/dataTableSearch/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export const defaultSortSchemaTableBy: SchemaSortByIds[keyof SchemaSortByIds] =

export const defaultSortSearchTableBy: SchemaSortByIds[keyof SchemaSortByIds] =
{
key: 'relevance',
key: 'name',
asc: true, // Ignored for relevance, but when user switch to name asc would be true
};

0 comments on commit def3a0c

Please sign in to comment.