diff --git a/src/ozones/Server/public/js/plugins/vdcs-tab.js b/src/ozones/Server/public/js/plugins/vdcs-tab.js index 858beb081b..29bf077e10 100644 --- a/src/ozones/Server/public/js/plugins/vdcs-tab.js +++ b/src/ozones/Server/public/js/plugins/vdcs-tab.js @@ -241,7 +241,6 @@ var vdc_actions = { call: oZones.Zone.cluster, callback: function(req, list_json){ var options=''; - options += ''; $.each(list_json,function(){ options += ''; }); @@ -440,7 +439,7 @@ function updateVDCInfo(req,vdc_json){ }; function inCluster(resCluster, selCluster){ - if (selCluster == "-")//cluster none + if (selCluster == "-")//cluster none, unused return resCluster == "-1"; else return resCluster == selCluster; };