Skip to content

Commit

Permalink
fix(angular): fix issue where navAnimation was being incorrectly over…
Browse files Browse the repository at this point in the history
…ridden (#21508)
  • Loading branch information
liamdebeasi committed Jun 11, 2020
1 parent 7c8f621 commit e968bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/components/router-outlet/route-outlet.tsx
Expand Up @@ -187,15 +187,15 @@ export class RouterOutlet implements ComponentInterface, NavOutlet {
await transition({
mode,
animated,
animationBuilder,
enteringEl,
leavingEl,
baseEl: el,
progressCallback: (opts.progressAnimation
? ani => this.ani = ani
: undefined
),
...opts
...opts,
animationBuilder,
});

// emit nav changed event
Expand Down

0 comments on commit e968bd0

Please sign in to comment.