]> git.proxmox.com Git - proxmox-widget-toolkit.git/blobdiff - node/NetworkView.js
ui: network: code cleanup
[proxmox-widget-toolkit.git] / node / NetworkView.js
index ec18340e33c1b7de1ac37ed902c3505ee603dc59..45daa92a503e8823996fa0586818f9da20509aa5 100644 (file)
@@ -1,12 +1,21 @@
 Ext.define('proxmox-networks', {
     extend: 'Ext.data.Model',
     fields: [
-       'iface', 'type', 'active', 'autostart',
-       'bridge_ports', 'slaves',
-       'address', 'netmask', 'gateway',
-       'address6', 'netmask6', 'gateway6',
-       'cidr', 'cidr6',
-       'comments'
+       'active',
+       'address',
+       'address6',
+       'autostart',
+       'bridge_ports',
+       'cidr',
+       'cidr6',
+       'comments',
+       'gateway',
+       'gateway6',
+       'iface',
+       'netmask',
+       'netmask6',
+       'slaves',
+       'type',
     ],
     idProperty: 'iface'
 });