pve-manager/www/manager6/sdn/OptionsPanel.js
Stefan Lendl e07191a081 ui: sdn: homogenize the casing of labels
use title case, or upper case for abbreviations, everywhere.

Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
 [ TL: adapt commit subject to our style guides ]
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-11-06 18:17:45 +01:00

36 lines
580 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: 'IPAM',
flex: 1,
padding: '0 0 20 0',
border: 0,
}, {
xtype: 'pveSDNDnsView',
title: 'DNS',
flex: 1,
border: 0,
},
],
});