ui: ZFS create: set name-field minLength to 3 to match backend

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-07-03 18:03:51 +02:00
parent a5a85d41ff
commit fc93d38076

View File

@ -23,7 +23,8 @@ Ext.define('PBS.window.CreateZFS', {
xtype: 'proxmoxtextfield',
name: 'name',
fieldLabel: gettext('Name'),
allowBlank: false
minLength: 3,
allowBlank: false,
},
{
xtype: 'proxmoxcheckbox',