From 1cef9a45b64ce15ac8229a92b3c74127acf451cd Mon Sep 17 00:00:00 2001 From: Milamber Date: Thu, 9 May 2013 10:46:05 +0100 Subject: [PATCH] CLOUDSTACK-2413 - Display the Name of compute offering in dialog box Change Service Offering (was Description field before) --- ui/scripts/instances.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/instances.js b/ui/scripts/instances.js index 5b5ed1853e7..cac51947daa 100644 --- a/ui/scripts/instances.js +++ b/ui/scripts/instances.js @@ -735,7 +735,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}); }