From 829ff5da73e392b5c751f1711226344673436ec2 Mon Sep 17 00:00:00 2001 From: Hendrik Hofstadt Date: Sat, 7 Feb 2015 23:02:35 +0100 Subject: [PATCH] fixed loss of hostconfig when starting with batch --- app/components/containers/containersController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/containers/containersController.js b/app/components/containers/containersController.js index 7d26cba87..089c28f9f 100644 --- a/app/components/containers/containersController.js +++ b/app/components/containers/containersController.js @@ -27,7 +27,7 @@ function($scope, Container, Settings, Messages, ViewSpinner) { angular.forEach(items, function(c) { if (c.Checked) { counter = counter + 1; - action({id: c.Id}, function(d) { + action({id: c.Id, HostConfig: c.HostConfig}, function(d) { Messages.send("Container " + msg, c.Id); var index = $scope.containers.indexOf(c); complete();