File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ interface NavigationInstructionInit {
12
12
13
13
export class CommitChangesStep {
14
14
run ( navigationInstruction : NavigationInstruction , next : Function ) {
15
-
16
15
return navigationInstruction . _commitChanges ( true ) . then ( ( ) => {
17
16
navigationInstruction . _updateTitle ( ) ;
18
17
return next ( ) ;
Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ export class Router {
450
450
config : null // config will be created by the chained parent catchAllHandler
451
451
} ) ) ;
452
452
453
- return evaluateNavigationStrategy ( instruction , router . catchAllHandler )
453
+ return evaluateNavigationStrategy ( instruction , router . catchAllHandler ) ;
454
454
}
455
455
}
456
456
@@ -462,7 +462,7 @@ export class Router {
462
462
instruction . fragment = router . baseUrl ; //need to change the fragment in case of a redirect instead of moduleId
463
463
return instruction ;
464
464
} else if ( instruction . parentInstruction ) {
465
- return this . _findParentInstructionFromRouter ( router , instruction . parentInstruction )
465
+ return this . _findParentInstructionFromRouter ( router , instruction . parentInstruction ) ;
466
466
}
467
467
return undefined ;
468
468
}
You can’t perform that action at this time.
0 commit comments