diff --git a/src/ozones/Server/public/js/plugins/vdcs-tab.js b/src/ozones/Server/public/js/plugins/vdcs-tab.js
index aa35e31931..4564886c96 100644
--- a/src/ozones/Server/public/js/plugins/vdcs-tab.js
+++ b/src/ozones/Server/public/js/plugins/vdcs-tab.js
@@ -49,7 +49,7 @@ var create_vdc_tmpl =
\
\
\
- Allows hosts belonging to other VDCs to be re-added to this one. They will appear marked with * in the list.
\
+ Allows hosts belonging to other VDCs to be re-added to this one. They will appear greyed-out in the lists.
\
\
\
\
@@ -77,7 +77,7 @@ var update_vdc_tmpl =
\
\
\
- Allows hosts belonging to other VDCs to be re-added to this one. They will appear marked with * in the list.
\
+ Allows hosts belonging to other VDCs to be re-added to this one. They will appear greyed-out in the list.
\
\
\
\
@@ -326,7 +326,7 @@ function fillHostList(req, host_list_json){
free = isHostFree(this.HOST.ID,zone_id);
if (force || free){
- list+=''+(free? this.HOST.NAME : this.HOST.NAME+'*')+'';
+ list+=''+(free? this.HOST.NAME : ''+this.HOST.NAME+'')+'';
}
});
$('div#create_vdc_dialog #vdc_available_hosts_list').html(list);
@@ -367,7 +367,7 @@ function fillUpdateHostList(req, host_list_json){
free = isHostFree(this.HOST.ID,zone_id);
if (force || free){
- list+=''+(free? this.HOST.NAME : this.HOST.NAME+'*')+'';
+ list+=''+(free? this.HOST.NAME : ''+this.HOST.NAME+'')+'';
}
});
@@ -404,7 +404,7 @@ function setupCreateVDCDialog(){
dialog.dialog({
autoOpen: false,
modal: true,
- width: 500
+ width: 420
});
$('button',dialog).button();
@@ -495,7 +495,7 @@ function setupUpdateVDCDialog(){
dialog.dialog({
autoOpen: false,
modal: true,
- width: 500
+ width: 420
});
$('button',dialog).button();