add 'single' type for zfs creation

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2018-08-08 10:20:10 +02:00 committed by Dietmar Maurer
parent fee716d32b
commit f04e415b5e

View File

@ -69,8 +69,9 @@ Ext.define('PVE.node.CreateZFS', {
xtype: 'proxmoxKVComboBox',
fieldLabel: gettext('RAID Level'),
name: 'raidlevel',
value: 'mirror',
value: 'single',
comboItems: [
['single', gettext('Single Disk')],
['mirror', 'Mirror'],
['raid10', 'RAID10'],
['raidz', 'RAIDZ'],