From 11fe51dac7b5e319336ac49b74b366451a917978 Mon Sep 17 00:00:00 2001 From: rmroot Date: Fri, 6 Dec 2024 09:02:19 -0600 Subject: [PATCH 1/2] update feedback links to use help desk --- .../feedback-page/feedback-page.component.html | 9 ++++----- src/app/core-components/welcome/welcome.component.html | 6 +++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/core-components/feedback-page/feedback-page.component.html b/src/app/core-components/feedback-page/feedback-page.component.html index 6479665a..713fa0d6 100644 --- a/src/app/core-components/feedback-page/feedback-page.component.html +++ b/src/app/core-components/feedback-page/feedback-page.component.html @@ -8,8 +8,8 @@

We'd love to hear from you! The JUSTIFI application is in active development and your feedback is invaluable in shaping the user experience, new features and general content within the tool. - To provide feedback, please email Kristina - Armstrong (armstrongko@ornl.gov) with the subject line + To provide feedback, please email the JUSTIFI help desk + (justifi-help@ornl.gov) with the subject line “JUSTIFI Feedback - A Summary”. This will allow the team to follow up with any clarification questions in a timely manner and update you on progress towards implementing your ideas! @@ -26,9 +26,8 @@

Bug Reporting

- If you happen to encounter a bug while using JUSTIFI please report them to Kristina - Armstrong (armstrongko@ornl.gov) as well + If you happen to encounter a bug while using JUSTIFI please report them to the JUSTIFI help desk (justifi-help@ornl.gov) using the subject “JUSTIFI Bug Reporting - A Summary”. Kristina will work with you to resolve the issue and make sure the bug is fixed to prevent future occurrences. diff --git a/src/app/core-components/welcome/welcome.component.html b/src/app/core-components/welcome/welcome.component.html index e68f985a..d94f18c4 100644 --- a/src/app/core-components/welcome/welcome.component.html +++ b/src/app/core-components/welcome/welcome.component.html @@ -194,9 +194,9 @@

We'd love to hear from you. If you have any feedback on the tool you would like - to share, use the email link provided for Kristina Armstrong - (armstrongko@ornl.gov) to contact our team and let us know your + to share, use the email link provided for the JUSTIFI help desk + (justifi-help@ornl.gov) to contact our team and let us know your thoughts. The feedback link can also be used to report any bugs you find along the way!

From 31c81e18bc5707645c63f367feb4d1c385ddd2b7 Mon Sep 17 00:00:00 2001 From: rmroot Date: Fri, 6 Dec 2024 09:14:41 -0600 Subject: [PATCH 2/2] fix help content link --- src/app/routing/app-routing.module.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/routing/app-routing.module.ts b/src/app/routing/app-routing.module.ts index c25491f1..a7a1e305 100644 --- a/src/app/routing/app-routing.module.ts +++ b/src/app/routing/app-routing.module.ts @@ -8,6 +8,7 @@ import { NebsDatabaseComponent } from '../nebs-database/nebs-database.component' import { AboutComponent } from '../core-components/about/about.component'; import { FeedbackPageComponent } from '../core-components/feedback-page/feedback-page.component'; import { AcknowledgmentsComponent } from '../core-components/acknowledgments/acknowledgments.component'; +import { HelpComponent } from '../core-components/help/help.component'; const routes: Routes = [ { @@ -35,6 +36,10 @@ const routes: Routes = [ path: 'acknowledgments', component: AcknowledgmentsComponent }, + { + path: 'help', + component: HelpComponent + }, SetupWizardRoutes, PortfolioRoutes, //wildcard/page not found needs to be last route