mirror of https://github.com/apache/cloudstack.git
bug 5881: disabled domain edit for now since it doesn't work as intended.
- Also fixed creating user and domain in the test provisioning tool to make use of the new API format.
This commit is contained in:
parent
db5196d110
commit
3be51b5b8c
|
|
@ -404,7 +404,7 @@
|
|||
</div>
|
||||
<div class="grid_smallgenrow_cell" style="width: 10%;" id="domain_links">
|
||||
<div class="netgrid_celltitles">
|
||||
<a href="#" id="edit_link">Edit</a> | <a href="#" id="delete_link">Delete</a></div>
|
||||
<a href="#" id="delete_link">Delete</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -322,7 +322,7 @@ $(document).ready(function() {
|
|||
dataType: "json",
|
||||
async: false,
|
||||
success: function(json) {
|
||||
userJSONToTemplate(json.createuserresponse, template);
|
||||
userJSONToTemplate(json.createuserresponse.user, template);
|
||||
loadingImg.hide();
|
||||
rowContainer.show();
|
||||
},
|
||||
|
|
@ -552,7 +552,7 @@ $(document).ready(function() {
|
|||
dataType: "json",
|
||||
async: false,
|
||||
success: function(json) {
|
||||
domainJSONToTemplate(json.createdomainresponse, template);
|
||||
domainJSONToTemplate(json.createdomainresponse.domain, template);
|
||||
loadingImg.hide();
|
||||
rowContainer.show();
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue