From 2fc9fbda76bd8f84f6dbb5f31886ddf61fc3316b Mon Sep 17 00:00:00 2001 From: horatio Date: Fri, 16 Aug 2024 12:48:17 -0400 Subject: [PATCH] 1209 Default to 2024-2033 council districts - updated environment and application js to update default checked CCD from 2013-2023 to 2024-2033 --- app/controllers/application.js | 2 +- config/environment.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/application.js b/app/controllers/application.js index e61ff811..f2f28e50 100644 --- a/app/controllers/application.js +++ b/app/controllers/application.js @@ -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( diff --git a/config/environment.js b/config/environment.js index 2b2347eb..4f9aa1e6 100644 --- a/config/environment.js +++ b/config/environment.js @@ -337,7 +337,7 @@ module.exports = function (environment) { cityCouncilDistrictsOptionSets: [ { name: '2013-2023', - checked: true, + checked: false, codes: ['2013'], style: { color: '#33D8DC', @@ -345,7 +345,7 @@ module.exports = function (environment) { }, { name: '2024-2033', - checked: false, + checked: true, codes: ['2024'], style: { color: '#DC333D',