From 530fb6527851db95ff5d05c132f656b271e3168f Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Tue, 7 Aug 2012 11:48:36 -0700 Subject: [PATCH] cloudstack 3.0 UI - VPC - private gateways - preCheck() should not call args.response.success(). --- ui/scripts/vpc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 6ae646650d4..3d2b33047d2 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -436,8 +436,7 @@ listAll: true }, success: function(json) { - items = json.listprivategatewaysresponse.privategateway; - args.response.success({ data: items }); + items = json.listprivategatewaysresponse.privategateway; } });