followup: HW Raid note: move to bottom and fixup link

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-06-21 15:27:31 +02:00
parent bd36813405
commit deca45c125
2 changed files with 16 additions and 16 deletions

View File

@ -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 ' +
'<a target="_blank" href="' + Proxmox.Utils.get_help_link('chapter_pveceph') + '">here</a>.',
},
{
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 ' +
'<a target="_blank" href="' + Proxmox.Utils.get_help_link('chapter_pveceph') + '">the reference documentation</a>.',
}
]
});

View File

@ -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 ' +
'<a target="_blank" href="' + Proxmox.Utils.get_help_link('chapter_zfs') + '">here</a>.',
},
{
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 ' +
'<a target="_blank" href="' + Proxmox.Utils.get_help_link('chapter_zfs') + '">the reference documentation</a>.',
}
]
});