CLOUDSTACK-2413 - Display the Name of compute offering in dialog box Change Service Offering (was Description field before)

This commit is contained in:
Milamber 2013-05-09 10:46:05 +01:00
parent 600f140df6
commit 2e1877af33
1 changed files with 1 additions and 1 deletions

View File

@ -934,7 +934,7 @@
var serviceofferings = json.listserviceofferingsresponse.serviceoffering;
var items = [];
$(serviceofferings).each(function() {
items.push({id: this.id, description: this.displaytext});
items.push({id: this.id, description: this.name});
});
args.response.success({data: items});
}