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

Commit

Permalink
uses correct nsRouterLink again, after bugfix via 1.5.1 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesHoppe committed Mar 30, 2017
1 parent cd62d1f commit e07b3ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion app/book-list/book-list.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<StackLayout class="bm-book-list-item item"
*ngFor="let b of books"
[book]="b"
[nsRouterLink]="['books', b.isbn]">
[nsRouterLink]="b.isbn">
</StackLayout>
<ActivityIndicator [busy]="!books"></ActivityIndicator>
<Label *ngIf="books && !books.length" text="Es wurden noch keine Bücher eingetragen."></Label>
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@
"start": "tns run android --emulator"
},
"dependencies": {
"@angular/animations": "4.0.0",
"@angular/common": "4.0.0",
"@angular/compiler": "4.0.0",
"@angular/core": "4.0.0",
"@angular/forms": "4.0.0",
"@angular/http": "4.0.0",
"@angular/platform-browser": "4.0.0",
"@angular/platform-browser-dynamic": "4.0.0",
"@angular/router": "4.0.0",
"nativescript-angular": "1.5.0",
"nativescript-theme-core": "~1.0.2",
"reflect-metadata": "~0.1.8",
"@angular/animations": "4.0.1",
"@angular/common": "4.0.1",
"@angular/compiler": "4.0.1",
"@angular/core": "4.0.1",
"@angular/forms": "4.0.1",
"@angular/http": "4.0.1",
"@angular/platform-browser": "4.0.1",
"@angular/platform-browser-dynamic": "4.0.1",
"@angular/router": "4.0.1",
"nativescript-angular": "1.5.1",
"nativescript-theme-core": "~1.0.3",
"reflect-metadata": "~0.1.10",
"rxjs": "~5.2.0",
"tns-core-modules": "2.5.2",
"zone.js": "~0.8.2"
"zone.js": "~0.8.5"
},
"devDependencies": {
"babel-traverse": "6.4.5",
Expand Down

1 comment on commit e07b3ce

@fmalcher
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK

Please sign in to comment.