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

feat: change title display for announcedByProvince in summary #3628

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.203.0](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.202.2...v1.203.0) (2024-10-25)

### Features

- change title display for announcedByProvince in summary ([f31c8e2](https://github.com/bcgov/CONN-CCBC-portal/commit/f31c8e22815423429bca897cc279faead7dd3ca8))

## [1.202.2](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.202.1...v1.202.2) (2024-10-23)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion app/formSchema/analyst/cbc/eventsAndDates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const eventsAndDates: RJSFSchema = {
},
announcedByProvince: {
type: 'boolean',
title: 'Announced by Province',
title: 'Announced by BC/ISED',
oneOf: [
{ const: true, title: 'Yes' },
{ const: false, title: 'No' },
Expand Down
2 changes: 1 addition & 1 deletion app/formSchema/analyst/summary/eventsAndDates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const eventsAndDates: RJSFSchema = {
properties: {
announcedByProvince: {
type: 'string',
title: 'Announced by Province',
title: 'Announced by BC/ISED',
},
dateApplicationReceived: {
type: 'string',
Expand Down
2 changes: 1 addition & 1 deletion app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const eventsAndDatesUiSchema = {
},
announcedByProvince: {
'ui:widget': 'RadioWidget',
'ui:label': 'Announced By Province',
'ui:label': 'Announced By BC/ISED',
},
dateApplicationReceived: {
'ui:widget': 'DatePickerWidget',
Expand Down
2 changes: 1 addition & 1 deletion app/formSchema/uiSchema/summary/eventsAndDatesUiSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const eventsAndDatesUiSchema = {
'ui:title': 'Events and Dates',
announcedByProvince: {
'ui:widget': 'TextWidget',
'ui:label': 'Announced by Province',
'ui:label': 'Announced by BC/ISED',
},
dateApplicationReceived: {
'ui:widget': 'DateWidget',
Expand Down
1 change: 1 addition & 0 deletions db/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -715,3 +715,4 @@ tables/application_form_template_9_data 2024-09-25T22:50:17Z Rafael Solorzano <6
@1.202.0 2024-10-21T21:32:01Z CCBC Service Account <[email protected]> # release v1.202.0
@1.202.1 2024-10-23T14:59:42Z CCBC Service Account <[email protected]> # release v1.202.1
@1.202.2 2024-10-23T20:54:15Z CCBC Service Account <[email protected]> # release v1.202.2
@1.203.0 2024-10-25T16:54:48Z CCBC Service Account <[email protected]> # release v1.203.0
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.202.2",
"version": "1.203.0",
"main": "index.js",
"repository": "https://github.com/bcgov/CONN-CCBC-portal.git",
"author": "Romer, Meherzad CITZ:EX <[email protected]>",
Expand Down
Loading