Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 4549613

Browse files
committed
docs(router): Minor content update for Heroes tutorial
- Delete routerLinkActive from the earliest code example as it is not relevant to what the user is trying to achieve at that point in the tutorial
1 parent 66984d5 commit 4549613

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/docs/_examples/toh-5/ts/app/app.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { HeroService } from './hero.service';
1111
template: `
1212
<h1>{{title}}</h1>
1313
<nav>
14-
<a [routerLink]="['/dashboard']" routerLinkActive="active">Dashboard</a>
15-
<a [routerLink]="['/heroes']" routerLinkActive="active">Heroes</a>
14+
<a [routerLink]="['/dashboard']">Dashboard</a>
15+
<a [routerLink]="['/heroes']">Heroes</a>
1616
</nav>
1717
<router-outlet></router-outlet>
1818
`,

0 commit comments

Comments
 (0)