Skip to content

Commit

Permalink
Merge pull request #3673 from bcgov/NDT-602-Wrong-Username-in-announc…
Browse files Browse the repository at this point in the history
…ement-history

fix: add withdrawn to status external check on history
  • Loading branch information
ccbc-service-account authored Nov 26, 2024
2 parents 3fb1a62 + 7b2c0c6 commit 0d5bdb5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.212.2](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.212.1...v1.212.2) (2024-11-26)

### Bug Fixes

- add withdrawn to status external check on history ([53ba0e3](https://github.com/bcgov/CONN-CCBC-portal/commit/53ba0e3dcb4b3035098275643ba5c067f76e98b9))

## [1.212.1](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.212.0...v1.212.1) (2024-11-26)

# [1.212.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.211.3...v1.212.0) (2024-11-25)
Expand Down
2 changes: 1 addition & 1 deletion app/components/Analyst/History/HistoryContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ const HistoryContent = ({

if (tableName === 'application_status') {
const isReceived = item === 'received';
const isExternal = item.includes('applicant_');
const isExternal = item.includes('applicant_') || item === 'withdrawn';
return (
<div>
<StyledContent data-testid="history-content-status">
Expand Down
1 change: 1 addition & 0 deletions db/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -741,3 +741,4 @@ computed_columns/cbc_history [computed_columns/[email protected]] 2024-11-13T2
@1.211.3 2024-11-21T16:51:48Z CCBC Service Account <[email protected]> # release v1.211.3
@1.212.0 2024-11-25T17:29:01Z CCBC Service Account <[email protected]> # release v1.212.0
@1.212.1 2024-11-26T16:42:04Z CCBC Service Account <[email protected]> # release v1.212.1
@1.212.2 2024-11-26T22:55:20Z CCBC Service Account <[email protected]> # release v1.212.2
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.212.1",
"version": "1.212.2",
"main": "index.js",
"repository": "https://github.com/bcgov/CONN-CCBC-portal.git",
"author": "Romer, Meherzad CITZ:EX <[email protected]>",
Expand Down

0 comments on commit 0d5bdb5

Please sign in to comment.