diff --git a/www/manager6/ceph/OSD.js b/www/manager6/ceph/OSD.js
index 2886184a..31cd3ea3 100644
--- a/www/manager6/ceph/OSD.js
+++ b/www/manager6/ceph/OSD.js
@@ -21,14 +21,6 @@ Ext.define('PVE.CephCreateOsd', {
url: "/nodes/" + me.nodename + "/ceph/osd",
method: 'POST',
items: [
- {
- xtype: 'displayfield',
- padding: '0 0 10 0',
- userCls: 'pve-hint',
- value: 'Note: Ceph is not compatible with disks backed by a hardware ' +
- 'RAID controller. For details see the reference documentation ' +
- 'here.',
- },
{
xtype: 'inputpanel',
onGetValues: function(values) {
@@ -115,6 +107,14 @@ Ext.define('PVE.CephCreateOsd', {
emptyText: gettext('Automatic')
}
]
+ },
+ {
+ xtype: 'displayfield',
+ padding: '5 0 0 0',
+ userCls: 'pve-hint',
+ value: 'Note: Ceph is not compatible with disks backed by a hardware ' +
+ 'RAID controller. For details see ' +
+ 'the reference documentation.',
}
]
});
diff --git a/www/manager6/node/ZFS.js b/www/manager6/node/ZFS.js
index fe048bcb..2df0bc2f 100644
--- a/www/manager6/node/ZFS.js
+++ b/www/manager6/node/ZFS.js
@@ -40,14 +40,6 @@ Ext.define('PVE.node.CreateZFS', {
url: '/nodes/' + me.nodename + '/disks/zfs',
method: 'POST',
items: [
- {
- xtype: 'displayfield',
- padding: '0 0 10 0',
- userCls: 'pve-hint',
- value: 'Note: ZFS is not compatible with disks backed by a hardware ' +
- 'RAID controller. For details see the reference documentation ' +
- 'here.',
- },
{
xtype: 'inputpanel',
onGetValues: function(values) {
@@ -163,6 +155,14 @@ Ext.define('PVE.node.CreateZFS', {
]
}
]
+ },
+ {
+ xtype: 'displayfield',
+ padding: '5 0 0 0',
+ userCls: 'pve-hint',
+ value: 'Note: ZFS is not compatible with disks backed by a hardware ' +
+ 'RAID controller. For details see ' +
+ 'the reference documentation.',
}
]
});