From e9ea554dfe993530504b33405fdb9dc7dadb9c92 Mon Sep 17 00:00:00 2001 From: Hans Date: Thu, 25 Aug 2016 10:59:21 -0700 Subject: [PATCH] fix(config): misnamed variable causing errors. --- addon/ng2/models/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/ng2/models/config/config.ts b/addon/ng2/models/config/config.ts index 2c0161c28652..5ca4945b0bde 100644 --- a/addon/ng2/models/config/config.ts +++ b/addon/ng2/models/config/config.ts @@ -73,7 +73,7 @@ export class CliConfig { try { content = JSON.parse(configContent); schema = JSON.parse(schemaContent); - others = otherContents.map(content => JSON.parse(otherContent)); + others = otherContents.map(otherContent => JSON.parse(otherContent)); } catch (err) { throw new InvalidConfigError(err); }