Updated Branches: refs/heads/4.0 f57095aa0 -> 17c8b648b
CS-16413: cloudstack UI - domain page - pass details=min to listAccounts API. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/17c8b648 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/17c8b648 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/17c8b648 Branch: refs/heads/4.0 Commit: 17c8b648b89cf710f97ce7cec7d8af06d7cef69d Parents: a5f2696 Author: Jessica Wang <[email protected]> Authored: Thu Sep 27 15:06:57 2012 -0700 Committer: Edison Su <[email protected]> Committed: Thu Sep 27 17:23:52 2012 -0700 ---------------------------------------------------------------------- ui/scripts/domains.js | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/17c8b648/ui/scripts/domains.js ---------------------------------------------------------------------- diff --git a/ui/scripts/domains.js b/ui/scripts/domains.js index 3383c57..f769b67 100644 --- a/ui/scripts/domains.js +++ b/ui/scripts/domains.js @@ -288,7 +288,9 @@ $.ajax({ url: createURL("listAccounts&domainid=" + domainObj.id), async: false, - dataType: "json", + data: { + details: 'min' + }, success: function(json) { var items = json.listaccountsresponse.account; var total;
