Skip to content

Commit

Permalink
1209 Default to 2024-2033 council districts
Browse files Browse the repository at this point in the history
  - updated environment and application js to update default checked CCD from 2013-2023 to 2024-2033
  • Loading branch information
horatiorosa committed Aug 16, 2024
1 parent 8e904d2 commit 2fc9fbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const defaultSelectedPfirmOptionSets = floodplainPfirm2015OptionSets
.reduce((acc, curr) => acc.concat(curr))
.sort();

const defaultSelectedCouncilDistricts = ['2013'];
const defaultSelectedCouncilDistricts = ['2024'];

// define new query params here:
export const mapQueryParams = new QueryParams(
Expand Down
4 changes: 2 additions & 2 deletions config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,15 @@ module.exports = function (environment) {
cityCouncilDistrictsOptionSets: [
{
name: '2013-2023',
checked: true,
checked: false,
codes: ['2013'],
style: {
color: '#33D8DC',
},
},
{
name: '2024-2033',
checked: false,
checked: true,
codes: ['2024'],
style: {
color: '#DC333D',
Expand Down

0 comments on commit 2fc9fbd

Please sign in to comment.