Skip to content

Commit

Permalink
Merge pull request #1210 from NYCPlanning/issue/1209-change-default-ccd
Browse files Browse the repository at this point in the history
Issue/1209 Change Default Checked CCD
  • Loading branch information
TylerMatteo authored Aug 19, 2024
2 parents 8e904d2 + 2fc9fbd commit 3f7982a
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 3f7982a

Please sign in to comment.