pve-manager/www/manager6/sdn/OptionsPanel.js
Thomas Lamprecht 4966ba74f3 ui: sdn: eslint auto fixes
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2021-04-26 15:44:57 +02:00

42 lines
713 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',
initComponent: function() {
var me = this;
me.items = [
{
xtype: 'pveSDNControllerView',
title: gettext('Controllers'),
border: 0,
collapsible: true,
padding: '0 0 20 0',
},
{
xtype: 'pveSDNIpamView',
title: gettext('Ipams'),
border: 0,
collapsible: true,
padding: '0 0 20 0',
}, {
xtype: 'pveSDNDnsView',
flex: 1,
collapsible: true,
title: gettext('Dns'),
border: 0,
}];
me.callParent();
},
});