From deca45c1253a369f84c0d2daa1898a8822971d2d Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 21 Jun 2019 15:27:31 +0200 Subject: [PATCH] followup: HW Raid note: move to bottom and fixup link Signed-off-by: Thomas Lamprecht --- www/manager6/ceph/OSD.js | 16 ++++++++-------- www/manager6/node/ZFS.js | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) 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.', } ] });