From 9bf9d5aaee5e8863f5f50d2a1f88a03498ec4c4b Mon Sep 17 00:00:00 2001 From: Melanie Mazanec Date: Wed, 7 Aug 2019 10:44:46 -0400 Subject: [PATCH 1/3] Add status translations, text decoration underline for dev dash --- src/app/development/utils.js | 8 ++++++-- src/styles/components/MajorDevelopmentDashboard.scss | 4 ++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/development/utils.js b/src/app/development/utils.js index 5f854081..9cbe1d46 100644 --- a/src/app/development/utils.js +++ b/src/app/development/utils.js @@ -14,7 +14,7 @@ export const statusTranslation = [ }, { accelaSpeak: 'CC Issued', - statusText: '', + statusText: 'This project has been approved and the City has issued permits to begin construction.', closed: true, }, { @@ -78,7 +78,7 @@ export const statusTranslation = [ }, { accelaSpeak: 'Revoked', - statusText: '', + statusText: 'This is not an active permit application.', closed: true, }, { @@ -102,6 +102,10 @@ export const statusTranslation = [ statusText: 'The applicant has asked the City to stop reviewing this project.', closed: true, }, + { + accelaSpeak: 'Revisions Requested', + statusText: 'Staff has reviewed the plans and asked for further information from the applicant.', + }, ]; export const defaultTableHeaders = [ diff --git a/src/styles/components/MajorDevelopmentDashboard.scss b/src/styles/components/MajorDevelopmentDashboard.scss index e9327175..f4315144 100644 --- a/src/styles/components/MajorDevelopmentDashboard.scss +++ b/src/styles/components/MajorDevelopmentDashboard.scss @@ -17,6 +17,10 @@ margin-bottom: 5rem; } +#majorDevDash a { + text-decoration: underline; +} + .top-level-accordion.accordion-panel-body { padding: 1rem 0; } From 0dec1a2e45c302888d88c88c192930cfda024b00 Mon Sep 17 00:00:00 2001 From: Melanie Mazanec Date: Wed, 7 Aug 2019 10:47:41 -0400 Subject: [PATCH 2/3] Sibling selector instead of all links --- src/styles/components/MajorDevelopmentDashboard.scss | 4 ---- src/styles/styles.scss | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/styles/components/MajorDevelopmentDashboard.scss b/src/styles/components/MajorDevelopmentDashboard.scss index f4315144..e9327175 100644 --- a/src/styles/components/MajorDevelopmentDashboard.scss +++ b/src/styles/components/MajorDevelopmentDashboard.scss @@ -17,10 +17,6 @@ margin-bottom: 5rem; } -#majorDevDash a { - text-decoration: underline; -} - .top-level-accordion.accordion-panel-body { padding: 1rem 0; } diff --git a/src/styles/styles.scss b/src/styles/styles.scss index 90938b4c..7f713685 100644 --- a/src/styles/styles.scss +++ b/src/styles/styles.scss @@ -34,7 +34,7 @@ h4{ color: #6C787F; } -p a { +p a, p + ul a { text-decoration: underline; } From 814aec54f26ea11b82093a8648090c64944dfec5 Mon Sep 17 00:00:00 2001 From: Melanie Mazanec Date: Wed, 7 Aug 2019 10:49:05 -0400 Subject: [PATCH 3/3] Bump version number for release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0ad068fc..c0d53766 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplicity2", - "version": "4.3.8", + "version": "4.3.9", "description": "Version 2 of SimpliCity", "main": "index.js", "scripts": {