]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
node network: hide ip and netmask by default
authorDominik Csapak <d.csapak@proxmox.com>
Wed, 10 Jul 2019 09:30:50 +0000 (11:30 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 10 Jul 2019 10:26:54 +0000 (12:26 +0200)
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>
node/NetworkView.js

index e3f7e60ebd3708b30ca107b9b088dfd3769ebced..2c4d8515d0b5d8e348395a4bcb8ce7a3c1ccd9e7 100644 (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'),
                        },