From 44146a8b1a2db529d1b143c17fef8f1ef4b4882c Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Tue, 3 Jul 2018 09:51:54 -0700 Subject: [PATCH] SHIBUI-646 Fixed default route with redirect --- ui/src/app/app.routing.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/app/app.routing.ts b/ui/src/app/app.routing.ts index 3de190469..9903039c9 100644 --- a/ui/src/app/app.routing.ts +++ b/ui/src/app/app.routing.ts @@ -3,6 +3,7 @@ import { Routes, RouterModule } from '@angular/router'; const routes: Routes = [ { path: '', redirectTo: 'metadata', pathMatch: 'full' }, + { path: 'dashboard', redirectTo: 'metadata', pathMatch: 'full' }, { path: 'metadata', loadChildren: './metadata/metadata.module#MetadataModule'