You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by im...@apache.org on 2014/12/14 18:15:10 UTC

[04/16] stratos git commit: fix cartridge object id missing issues on application editor

fix cartridge object id missing issues on application editor


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/7cb141db
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/7cb141db
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/7cb141db

Branch: refs/heads/4.1.0-test
Commit: 7cb141db95b1d6c39ea3f26a9a28fc4b34a10e2e
Parents: f2bfd6e
Author: Dakshika Jayathilaka <si...@gmail.com>
Authored: Sun Dec 14 17:25:09 2014 +0530
Committer: Dakshika Jayathilaka <si...@gmail.com>
Committed: Sun Dec 14 17:25:09 2014 +0530

----------------------------------------------------------------------
 .../console/themes/theme0/js/custom/applications-editor.js         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/7cb141db/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
index 4756852..69d93fa 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
@@ -614,7 +614,7 @@ function generateCartridges(data){
         cartridgeListHtml += '<div class="block-cartridge" ' +
             'data-info="'+cartridgeData.description+ '"'+
             'data-toggle="tooltip" data-placement="bottom" title="Single Click to view details. Double click to add"'+
-            'id="'+cartridgeData.cartridgeType+'">'
+            'id="'+cartridgeData.type+'">'
             + cartridgeData.displayName+
             '</div>'
     }