Skip to content

Commit

Permalink
fix: use proper orderBy prefix for statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed May 30, 2022
1 parent c0cc98d commit 4e64d61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/pages/cif/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ export function Projects({ preloadedQuery }: RelayProps<{}, projectsQuery>) {
new SearchableDropdownFilter(
"Status",
"status",
allProjectStatuses.edges.map((e) => e.node.name)
allProjectStatuses.edges.map((e) => e.node.name),
{ orderByPrefix: "PROJECT_STATUS_BY_PROJECT_STATUS_ID__NAME" }
),
new SearchableDropdownFilter(
"Project Managers",
Expand Down

0 comments on commit 4e64d61

Please sign in to comment.