mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-02 03:41:28 +00:00
ui: network: add columns for vlan-id and vlan-raw-device
Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
This commit is contained in:
parent
580ccacf1a
commit
3d886f9422
@ -16,6 +16,8 @@ Ext.define('proxmox-networks', {
|
||||
'netmask6',
|
||||
'slaves',
|
||||
'type',
|
||||
'vlan-id',
|
||||
'vlan-raw-device',
|
||||
],
|
||||
idProperty: 'iface',
|
||||
});
|
||||
@ -429,6 +431,18 @@ Ext.define('Proxmox.node.NetworkView', {
|
||||
dataIndex: 'gateway',
|
||||
renderer: renderer_generator('gateway'),
|
||||
},
|
||||
{
|
||||
header: gettext('VLAN ID'),
|
||||
hidden: true,
|
||||
sortable: true,
|
||||
dataIndex: 'vlan-id',
|
||||
},
|
||||
{
|
||||
header: gettext('VLAN raw device'),
|
||||
hidden: true,
|
||||
sortable: true,
|
||||
dataIndex: 'vlan-raw-device',
|
||||
},
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
dataIndex: 'comments',
|
||||
|
Loading…
Reference in New Issue
Block a user