Skip to content

Commit 2e1877a

Browse files
committed
CLOUDSTACK-2413 - Display the Name of compute offering in dialog box Change Service Offering (was Description field before)
1 parent 600f140 commit 2e1877a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/scripts/instances.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@
934934
var serviceofferings = json.listserviceofferingsresponse.serviceoffering;
935935
var items = [];
936936
$(serviceofferings).each(function() {
937-
items.push({id: this.id, description: this.displaytext});
937+
items.push({id: this.id, description: this.name});
938938
});
939939
args.response.success({data: items});
940940
}

0 commit comments

Comments
 (0)