You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by mu...@apache.org on 2012/12/06 09:09:11 UTC

[45/100] [abbrv] git commit: Network offering details: Service providers are not displayed anywhere:Modifying the code structure for map loop to retrieve the list of service providers in the form of key-value pairs

Network offering details: Service providers are not displayed anywhere:Modifying the code structure for map loop to retrieve the list of service providers in the form of key-value pairs


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/dcdf35fc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/dcdf35fc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/dcdf35fc

Branch: refs/heads/events-framework
Commit: dcdf35fc1e769f3ae29c6bb551ef9d209b5371ba
Parents: fda31ab
Author: Pranav Saxena <pr...@citrix.com>
Authored: Thu Nov 8 16:17:34 2012 +0530
Committer: Pranav Saxena <pr...@citrix.com>
Committed: Thu Nov 8 16:17:34 2012 +0530

----------------------------------------------------------------------
 ui/scripts/configuration.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/dcdf35fc/ui/scripts/configuration.js
----------------------------------------------------------------------
diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js
index dd6b691..435a68d 100644
--- a/ui/scripts/configuration.js
+++ b/ui/scripts/configuration.js
@@ -1991,8 +1991,8 @@
 													}).join(', '),
 
 													serviceCapabilities: $.map(item.service, function(service) {
-														return service.capability ? $.map(service.capability, function(capability) {
-															return capability.name + ': ' + capability.value;
+														return service.provider ? $.map(service.provider, function(capability) {
+															return service.name + ': ' + capability.name;
 														}).join(', ') : null;
 													}).join(', ')
 												})