From 6d3dbf0ef52ffa5917d0c9975b3e0af9c220a82e Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 10 May 2020 21:02:31 +0200 Subject: [PATCH] ui: sdn: move anycast addresses to advanced items Signed-off-by: Thomas Lamprecht --- www/manager6/sdn/VnetEdit.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/www/manager6/sdn/VnetEdit.js b/www/manager6/sdn/VnetEdit.js index b7bc634b..ca18c4ec 100644 --- a/www/manager6/sdn/VnetEdit.js +++ b/www/manager6/sdn/VnetEdit.js @@ -55,6 +55,17 @@ Ext.define('PVE.sdn.VnetInputPanel', { fieldLabel: gettext('Tag'), allowBlank: false, }, + { + xtype: 'textfield', + name: 'mac', + fieldLabel: gettext('MAC Address'), + vtype: 'MacAddress', + skipEmptyText: true, + allowBlank: true, + emptyText: 'auto', + }, + ], + advancedItems: [ { xtype: 'textfield', name: 'ipv4', @@ -73,15 +84,6 @@ Ext.define('PVE.sdn.VnetInputPanel', { skipEmptyText: true, allowBlank: true, }, - { - xtype: 'textfield', - name: 'mac', - fieldLabel: gettext('MAC Address'), - vtype: 'MacAddress', - skipEmptyText: true, - allowBlank: true, - emptyText: 'auto', - }, ], });