diff --git a/src/js/client.js b/src/js/client.js index e7cb9ed0f..a4a73681e 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -160,8 +160,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N progress: {}, region: null, size: null, - memory: 0, - edition: null + memory: 0 }; this._installedApps = []; this._installedAppsById = {}; @@ -265,8 +264,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N Client.prototype.setConfig = function (config) { var that = this; - // derive feature flags from edition - config.managed = config.edition === 'hostingprovider' || config.provider === 'caas'; + config.managed = config.provider === 'caas'; angular.copy(config, this._config);