Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/renovatebot/github…
Browse files Browse the repository at this point in the history
…-action-40.2.9
  • Loading branch information
RRanath authored Sep 16, 2024
2 parents 8dc7455 + 3dc562d commit 447b00e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.192.1](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.192.0...v1.192.1) (2024-09-16)

# [1.192.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.191.0...v1.192.0) (2024-09-13)

### Features

- pm assessments notify from table ([3d07ca0](https://github.com/bcgov/CONN-CCBC-portal/commit/3d07ca0562335a215a2d06fb3dee62608d429cfc))

# [1.191.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.190.12...v1.191.0) (2024-09-13)

### Bug Fixes
Expand Down
10 changes: 10 additions & 0 deletions app/components/AnalystDashboard/AssessmentAssignmentTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,10 @@ const AssessmentAssignmentTable: React.FC<Props> = ({ query }) => {
application.allAssessments.edges,
'projectManagement'
),
pmNotification: findNotification(
application.assessmentNotifications.edges,
'assignment_projectManagement'
),
techAssessment: findAssessment(
application.allAssessments.edges,
'technical'
Expand Down Expand Up @@ -528,9 +532,15 @@ const AssessmentAssignmentTable: React.FC<Props> = ({ query }) => {
application,
'financialRisk'
);
const pmAssignment = createAssignment(
application,
'pm',
'projectManagement'
);

if (techAssignment) assignmentsList.push(techAssignment);
if (financialAssignment) assignmentsList.push(financialAssignment);
if (pmAssignment) assignmentsList.push(pmAssignment);

return assignmentsList;
}, []);
Expand Down
2 changes: 2 additions & 0 deletions db/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -672,3 +672,5 @@ computed_columns/application_assessment_notifications 2024-09-06T21:58:13Z ,,, <
@1.190.11 2024-09-12T18:13:42Z CCBC Service Account <ccbc@button.is> # release v1.190.11
@1.190.12 2024-09-12T20:48:11Z CCBC Service Account <ccbc@button.is> # release v1.190.12
@1.191.0 2024-09-13T18:55:40Z CCBC Service Account <ccbc@button.is> # release v1.191.0
@1.192.0 2024-09-13T20:33:44Z CCBC Service Account <ccbc@button.is> # release v1.192.0
@1.192.1 2024-09-16T16:43:26Z CCBC Service Account <ccbc@button.is> # release v1.192.1
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.191.0",
"version": "1.192.1",
"main": "index.js",
"repository": "https://github.com/bcgov/CONN-CCBC-portal.git",
"author": "Romer, Meherzad CITZ:EX <Meherzad.Romer@gov.bc.ca>",
Expand Down

0 comments on commit 447b00e

Please sign in to comment.