Skip to content

Commit

Permalink
fix: cbc project default order asc by project number
Browse files Browse the repository at this point in the history
  • Loading branch information
RRanath committed Sep 4, 2024
1 parent 24f9a9e commit 527480b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/components/AnalystDashboard/AllDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ const AllDashboardTable: React.FC<Props> = ({ query }) => {
}
}
}
allCbcData(filter: { archivedAt: { isNull: true } }) {
allCbcData(
filter: { archivedAt: { isNull: true } }
orderBy: PROJECT_NUMBER_ASC
) {
edges {
node {
jsonData
Expand Down

0 comments on commit 527480b

Please sign in to comment.