pve-manager/www/manager6/sdn/OptionsPanel.js
Thomas Lamprecht c35bbd6ef7 ui: sdn: options: flex all and drop collapsible
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2022-03-29 17:37:27 +02:00

36 lines
581 B
JavaScript

Ext.define('PVE.sdn.Options', {
extend: 'Ext.panel.Panel',
alias: 'widget.pveSDNOptions',
title: 'Options',
layout: {
type: 'vbox',
align: 'stretch',
},
onlineHelp: 'pvesdn_config_controllers',
items: [
{
xtype: 'pveSDNControllerView',
title: gettext('Controllers'),
flex: 1,
padding: '0 0 20 0',
border: 0,
},
{
xtype: 'pveSDNIpamView',
title: 'IPAMs',
flex: 1,
padding: '0 0 20 0',
border: 0,
}, {
xtype: 'pveSDNDnsView',
title: 'DNS',
flex: 1,
border: 0,
},
],
});