Repository: cloudstack Updated Branches: refs/heads/master 61154b92f -> b64fa34ce
CLOUDSTACK-8141: UI > use Project view > Infrastructure > zone > physical network > Public traffic type > do not pass projectId to listNetworks API. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b64fa34c Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b64fa34c Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b64fa34c Branch: refs/heads/master Commit: b64fa34ce901f88a944f9f104310a8f53a827f0f Parents: 61154b9 Author: Jessica Wang <[email protected]> Authored: Fri Jan 2 11:33:57 2015 -0800 Committer: Jessica Wang <[email protected]> Committed: Fri Jan 2 11:35:31 2015 -0800 ---------------------------------------------------------------------- ui/scripts/system.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b64fa34c/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index ad40ec1..88d0a78 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -601,7 +601,9 @@ dataProvider: function (args) { $.ajax({ - url: createURL("listNetworks&listAll=true&trafficType=Public&isSystem=true&zoneId=" + selectedZoneObj.id), + url: createURL("listNetworks&listAll=true&trafficType=Public&isSystem=true&zoneId=" + selectedZoneObj.id, { + ignoreProject: true + }), dataType: "json", async: false, success: function (json) {
