From 9623af8a9ebda1dd6e9aeeea384f0e8f3fa24c1f Mon Sep 17 00:00:00 2001
From: Brandon Clayton <bclayton@usgs.gov>
Date: Wed, 27 Nov 2024 15:43:15 -0700
Subject: [PATCH] change title

---
 .../src/app/dev/dashboard/app.component.html         |  4 ++--
 .../src/app/dev/dashboard/app.component.ts           | 12 ++----------
 .../src/app/internal/dashboard/app.component.html    |  2 +-
 .../src/app/internal/dashboard/app.component.ts      |  5 +++--
 4 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/projects/nshmp-apps/src/app/dev/dashboard/app.component.html b/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
index 6f4c9fe7c..19568f897 100644
--- a/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
@@ -2,9 +2,9 @@
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
-      USGS Earthquake
+      USGS Development
       <br />
-      Development
+      Earthquake
       <br />
       Hazard Toolbox
     </nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts b/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
index 28957cbc6..fc22fe0f0 100644
--- a/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
@@ -34,24 +34,16 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = nav.devNavigation();
 
-  /** AWS applications */
-  private awsApps = nav.devAwsApps();
   /** Main development applications */
   private mainApps = nav.devMainApps();
 
   sections: ApplicationSections[] = [
     {
+      gridClass: 'grid-col-10',
       sections: [
         {
           applications: this.mainApps.map(navigation => ({navigation})),
-        },
-      ],
-    },
-    {
-      sections: [
-        {
-          applications: this.awsApps.map(navigation => ({navigation})),
-          title: 'AWS',
+          gridClass: 'grid-col-12 tablet-lg:grid-col-8 grid-offset-1',
         },
       ],
     },
diff --git a/projects/nshmp-apps/src/app/internal/dashboard/app.component.html b/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
index ba0728ed0..2384d26ae 100644
--- a/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
@@ -2,7 +2,7 @@
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
-      USGS Earthquake
+      USGS Internal Earthquake
       <br />
       Hazard Toolbox:
       <br />
diff --git a/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts b/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
index 51c680304..42fbf6918 100644
--- a/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
@@ -34,16 +34,17 @@ import {AuthService} from '../shared/services/auth.service';
 })
 export class AppComponent implements OnInit, OnDestroy {
   /** Navigation list for menu */
-  navigationList = nav.devNavigation();
+  navigationList = nav.internalNavigation();
 
   /** AWS applications */
-  private awsApps = nav.devAwsApps();
+  private awsApps = nav.internalAwsApps();
 
   sections: ApplicationSections[] = [];
 
   private sub: Subscription;
 
   constructor(private authService: AuthService) {}
+
   ngOnInit(): void {
     this.sub = this.authService.isAuthorized().subscribe(() => {
       this.sections = [
-- 
GitLab