From 5cb9d65146bb25a1d5bed105b06f762ebdfcbbd6 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 4 Aug 2016 22:54:50 -0500 Subject: [PATCH] chore(): fix type check error --- src/components/nav/nav-controller-base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/nav/nav-controller-base.ts b/src/components/nav/nav-controller-base.ts index 8643da05ae..adca27b24f 100644 --- a/src/components/nav/nav-controller-base.ts +++ b/src/components/nav/nav-controller-base.ts @@ -195,7 +195,7 @@ export class NavControllerBase extends Ion implements NavController { let leavingView = this.getByState(STATE_INIT_LEAVE); if (!leavingView && this._isPortal) { // if we didn't find an active view, and this is a portal - let activeNav = this._app.getActiveNav(); + let activeNav = this._app.getActiveNav(); if (activeNav) { leavingView = activeNav.getByState(STATE_INIT_LEAVE); }