From 3231c77b88fecf1364db645631004408c6e9e8c0 Mon Sep 17 00:00:00 2001 From: Rob Eisenberg Date: Thu, 16 Jul 2015 14:09:50 -0400 Subject: [PATCH] fix(view-strategy): incorrect variable reference --- src/view-strategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view-strategy.js b/src/view-strategy.js index 60f43064..66123866 100644 --- a/src/view-strategy.js +++ b/src/view-strategy.js @@ -136,6 +136,6 @@ export class InlineViewStrategy extends ViewStrategy { } } - return viewEngine.loadViewFactory(this.registryEntry, options, this.moduleId, loadContext); + return viewEngine.loadViewFactory(entry, options, this.moduleId, loadContext); } }