File tree 1 file changed +4
-6
lines changed
nativescript-angular/router
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -76,21 +76,19 @@ export class NSRouterLink implements OnChanges { // tslint:disable-line:directiv
76
76
JSON . stringify ( this . pageTransition ) ) ;
77
77
78
78
const extras = this . getExtras ( ) ;
79
- this . navigator . navigate ( this . commands , extras ) ;
79
+ this . navigator . navigateByUrl ( this . urlTree , extras ) ;
80
80
}
81
81
82
- private getExtras ( ) {
82
+ private getExtras ( ) : NavigationExtras & NavigationOptions {
83
83
const transition = this . getTransition ( ) ;
84
- const extras : NavigationExtras & NavigationOptions = {
84
+ return {
85
85
queryParams : this . queryParams ,
86
86
fragment : this . fragment ,
87
87
clearHistory : this . clearHistory ,
88
88
animated : transition . animated ,
89
89
transition : transition . transition ,
90
+ relativeTo : this . currentRoute ,
90
91
} ;
91
-
92
- return ( < any > Object ) . assign ( extras ,
93
- this . currentRoute . toString ( ) !== "Route(url:'', path:'')" && this . currentRoute ) ;
94
92
}
95
93
96
94
private getTransition ( ) : { animated : boolean , transition ?: NavigationTransition } {
You can’t perform that action at this time.
0 commit comments