From 3360a330d44907a009406b95c283e792cad69e00 Mon Sep 17 00:00:00 2001 From: Niggl Date: Tue, 14 Jul 2020 19:04:58 +0200 Subject: [PATCH] Changed default route and window title --- src/app/app-routing.module.ts | 2 +- src/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 741dc79..788e400 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -12,7 +12,7 @@ const routes: Routes = [ { path: 'dashboard', component: DashboardComponent }, { path: 'sprints', component: SprintTableComponent }, { path: 'backlog', component: BacklogComponent }, - { path: '', redirectTo: '/tasks', pathMatch: 'full' }, + { path: '', redirectTo: '/dashboard', pathMatch: 'full' }, ]; @NgModule({ diff --git a/src/index.html b/src/index.html index 465957e..aaf052a 100644 --- a/src/index.html +++ b/src/index.html @@ -2,7 +2,7 @@ - Frontend + Scrum Taskboard