diff --git a/src/js/client.js b/src/js/client.js index 1e1fdfd71..91f18fe56 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1016,8 +1016,8 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }); }; - Client.prototype.configureService = function (serviceName, memoryLimit, callback) { - post('/api/v1/services/' + serviceName, { memory: memoryLimit }, null, function (error, data, status) { + Client.prototype.configureService = function (serviceName, data, callback) { + post('/api/v1/services/' + serviceName, data, null, function (error, data, status) { if (error) return callback(error); if (status !== 202) return callback(new ClientError(status, data)); diff --git a/src/views/app.html b/src/views/app.html index c02834eb9..322589e76 100644 --- a/src/views/app.html +++ b/src/views/app.html @@ -544,7 +544,6 @@
Cloudron allocates 50% of this value as RAM and 50% as swap.
-Cloudron allocates 50% of this value as RAM and 50% as swap.
-Cloudron allocates 50% of this value as RAM and 50% as swap.