Skip to content
This repository was archived by the owner on Jul 23, 2019. It is now read-only.

Commit e07b3ce

Browse files
committed
uses correct nsRouterLink again, after bugfix via 1.5.1 patch
see NativeScript/nativescript-angular#728 see also NativeScript/nativescript-angular#724 FYI @fmalcher
1 parent cd62d1f commit e07b3ce

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Diff for: app/book-list/book-list.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<StackLayout class="bm-book-list-item item"
88
*ngFor="let b of books"
99
[book]="b"
10-
[nsRouterLink]="['books', b.isbn]">
10+
[nsRouterLink]="b.isbn">
1111
</StackLayout>
1212
<ActivityIndicator [busy]="!books"></ActivityIndicator>
1313
<Label *ngIf="books && !books.length" text="Es wurden noch keine Bücher eingetragen."></Label>

Diff for: package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717
"start": "tns run android --emulator"
1818
},
1919
"dependencies": {
20-
"@angular/animations": "4.0.0",
21-
"@angular/common": "4.0.0",
22-
"@angular/compiler": "4.0.0",
23-
"@angular/core": "4.0.0",
24-
"@angular/forms": "4.0.0",
25-
"@angular/http": "4.0.0",
26-
"@angular/platform-browser": "4.0.0",
27-
"@angular/platform-browser-dynamic": "4.0.0",
28-
"@angular/router": "4.0.0",
29-
"nativescript-angular": "1.5.0",
30-
"nativescript-theme-core": "~1.0.2",
31-
"reflect-metadata": "~0.1.8",
20+
"@angular/animations": "4.0.1",
21+
"@angular/common": "4.0.1",
22+
"@angular/compiler": "4.0.1",
23+
"@angular/core": "4.0.1",
24+
"@angular/forms": "4.0.1",
25+
"@angular/http": "4.0.1",
26+
"@angular/platform-browser": "4.0.1",
27+
"@angular/platform-browser-dynamic": "4.0.1",
28+
"@angular/router": "4.0.1",
29+
"nativescript-angular": "1.5.1",
30+
"nativescript-theme-core": "~1.0.3",
31+
"reflect-metadata": "~0.1.10",
3232
"rxjs": "~5.2.0",
3333
"tns-core-modules": "2.5.2",
34-
"zone.js": "~0.8.2"
34+
"zone.js": "~0.8.5"
3535
},
3636
"devDependencies": {
3737
"babel-traverse": "6.4.5",

0 commit comments

Comments
 (0)