node network: hide ip and netmask by default

CIDR column displays the same information in only on column,
no need to duplicate the information (by default)

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2019-07-10 11:30:50 +02:00 committed by Thomas Lamprecht
parent 8093ded0c3
commit 4211996ab0

View File

@ -327,6 +327,7 @@ Ext.define('Proxmox.node.NetworkView', {
header: gettext('IP address'),
sortable: true,
width: 120,
hidden: true,
dataIndex: 'address',
renderer: renderer_generator('address'),
},
@ -334,6 +335,7 @@ Ext.define('Proxmox.node.NetworkView', {
header: gettext('Subnet mask'),
width: 120,
sortable: true,
hidden: true,
dataIndex: 'netmask',
renderer: renderer_generator('netmask'),
},