Changed default route and window title

This commit is contained in:
Nicolai Ort 2020-07-14 19:04:58 +02:00
parent b51bd226ea
commit 3360a330d4
2 changed files with 2 additions and 2 deletions

View File

@ -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({

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Frontend</title>
<title>Scrum Taskboard</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />