From 38bd1b1428d4e2e7b901bfea78dc6c4a548cd26d Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 25 Nov 2015 11:06:44 -0600 Subject: [PATCH] fix(navController): pass params to insert --- ionic/components/nav/nav-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic/components/nav/nav-controller.ts b/ionic/components/nav/nav-controller.ts index f408d0ddb4..dbc5260809 100644 --- a/ionic/components/nav/nav-controller.ts +++ b/ionic/components/nav/nav-controller.ts @@ -346,7 +346,7 @@ export class NavController extends Ion { } // create new ViewController, but don't render yet - let viewCtrl = new ViewController(this, componentType); + let viewCtrl = new ViewController(this, componentType, params); viewCtrl.state = CACHED_STATE; viewCtrl.shouldDestroy = false; viewCtrl.shouldCache = false;