ui: datastore edit: avoid an extra indentation level

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-07-14 10:56:19 +02:00
parent 757d0ccc76
commit 67042466e8

View File

@ -21,8 +21,7 @@ Ext.define('PBS.DataStoreEdit', {
return {}; return {};
}, },
items: [ items: {
{
xtype: 'tabpanel', xtype: 'tabpanel',
bodyPadding: 10, bodyPadding: 10,
items: [ items: [
@ -50,7 +49,6 @@ Ext.define('PBS.DataStoreEdit', {
emptyText: gettext('An absolute path'), emptyText: gettext('An absolute path'),
}, },
], ],
column2: [ column2: [
{ {
xtype: 'proxmoxtextfield', xtype: 'proxmoxtextfield',
@ -69,7 +67,6 @@ Ext.define('PBS.DataStoreEdit', {
}, },
}, },
], ],
columnB: [ columnB: [
{ {
xtype: 'textfield', xtype: 'textfield',
@ -113,7 +110,6 @@ Ext.define('PBS.DataStoreEdit', {
allowBlank: true, allowBlank: true,
}, },
], ],
column2: [ column2: [
{ {
xtype: 'proxmoxintegerfield', xtype: 'proxmoxintegerfield',
@ -146,9 +142,7 @@ Ext.define('PBS.DataStoreEdit', {
allowBlank: true, allowBlank: true,
}, },
], ],
},
}
]
}
], ],
},
}); });