mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
Merge pull request #531 from MihaelaStoica/temp
Temporarily disable FCoE feature for all hosts
This commit is contained in:
commit
1efb42da6d
@ -167,7 +167,7 @@ namespace XenAdmin.TabPages
|
||||
}
|
||||
|
||||
//show the FCoE column for Dundee or higher hosts only
|
||||
ColumnFCoECapable.Visible = Helpers.DundeeOrGreater(host);
|
||||
ColumnFCoECapable.Visible = false; // Helpers.DundeeOrGreater(host);
|
||||
|
||||
//CA-47050: the Device column should be autosized to Fill, but should not become smaller than a minimum
|
||||
//width, which here is chosen to be the column header width. To find what this width is
|
||||
|
@ -93,7 +93,7 @@ namespace XenAdmin.Wizards.NewSRWizard_Pages
|
||||
|
||||
radioButtonCifs.Visible = !Helpers.FeatureForbidden(Connection, Host.RestrictCifs);
|
||||
|
||||
radioButtonFcoe.Visible = Helpers.DundeeOrGreater(Connection);
|
||||
radioButtonFcoe.Visible = false; // Helpers.DundeeOrGreater(Connection);
|
||||
|
||||
foreach (var radioButton in RadioButtons)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user