From e431bd604068ebe961b1ea927789657807742fc3 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 8 Jun 2016 11:36:01 +0200 Subject: [PATCH] Fix typo --- src/clients.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clients.js b/src/clients.js index 0fac0c2db..ad8868bfe 100644 --- a/src/clients.js +++ b/src/clients.js @@ -158,7 +158,7 @@ function getAll(callback) { var tmp = []; async.each(results, function (record, callback) { if (record.type === exports.TYPE_ADMIN || record.type === exports.TYPE_SDK || record.type === exports.TYPE_CLI) { - record.name = record.appid; + record.name = record.appId; record.location = constants.ADMIN_LOCATION; tmp.push(record);