Skip to content

Commit 2e3e463

Browse files
committed
1209 Default to 2024-2033 council districts
- updated environment and application js to update default checked CCD from 2013-2023 to 2024-2033
1 parent 55d660e commit 2e3e463

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/controllers/application.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const defaultSelectedPfirmOptionSets = floodplainPfirm2015OptionSets
3939
.reduce((acc, curr) => acc.concat(curr))
4040
.sort();
4141

42-
const defaultSelectedCouncilDistricts = ['2013'];
42+
const defaultSelectedCouncilDistricts = ['2024'];
4343

4444
// define new query params here:
4545
export const mapQueryParams = new QueryParams(

config/environment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -337,15 +337,15 @@ module.exports = function (environment) {
337337
cityCouncilDistrictsOptionSets: [
338338
{
339339
name: '2013-2023',
340-
checked: true,
340+
checked: false,
341341
codes: ['2013'],
342342
style: {
343343
color: '#33D8DC',
344344
},
345345
},
346346
{
347347
name: '2024-2033',
348-
checked: false,
348+
checked: true,
349349
codes: ['2024'],
350350
style: {
351351
color: '#DC333D',

0 commit comments

Comments
 (0)