Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cbc project default order asc by project number #3528

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.190.6](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.190.5...v1.190.6) (2024-09-04)

### Bug Fixes

- cbc project default order asc by project number ([527480b](https://github.com/bcgov/CONN-CCBC-portal/commit/527480b1142a7557e7361d07da597d1afb18bb7f))

## [1.190.5](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.190.4...v1.190.5) (2024-09-04)

### Bug Fixes
Expand Down
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
1 change: 1 addition & 0 deletions db/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -663,3 +663,4 @@ tables/communities_source_data_001_service_account 2024-08-28T16:32:48Z Rafael S
@1.190.3 2024-09-04T21:29:58Z CCBC Service Account <ccbc@button.is> # release v1.190.3
@1.190.4 2024-09-04T21:45:26Z CCBC Service Account <ccbc@button.is> # release v1.190.4
@1.190.5 2024-09-04T22:11:54Z CCBC Service Account <ccbc@button.is> # release v1.190.5
@1.190.6 2024-09-04T22:32:44Z CCBC Service Account <ccbc@button.is> # release v1.190.6
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CONN-CCBC-portal",
"version": "1.190.5",
"version": "1.190.6",
"main": "index.js",
"repository": "https://github.com/bcgov/CONN-CCBC-portal.git",
"author": "Romer, Meherzad CITZ:EX <Meherzad.Romer@gov.bc.ca>",
Expand Down
Loading