network edit: add tooltip to bridge ports inputs
.. as the exact format it takes might not be immediately obvious to users. Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
parent
7996ce875c
commit
d62ef2a856
@ -67,12 +67,20 @@ Ext.define('Proxmox.node.NetworkEdit', {
|
|||||||
xtype: 'textfield',
|
xtype: 'textfield',
|
||||||
fieldLabel: gettext('Bridge ports'),
|
fieldLabel: gettext('Bridge ports'),
|
||||||
name: 'bridge_ports',
|
name: 'bridge_ports',
|
||||||
|
autoEl: {
|
||||||
|
tag: 'div',
|
||||||
|
'data-qtip': gettext('Space-separated list of interfaces, for example: enp0s0 enp1s0'),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
} else if (me.iftype === 'OVSBridge') {
|
} else if (me.iftype === 'OVSBridge') {
|
||||||
column2.push({
|
column2.push({
|
||||||
xtype: 'textfield',
|
xtype: 'textfield',
|
||||||
fieldLabel: gettext('Bridge ports'),
|
fieldLabel: gettext('Bridge ports'),
|
||||||
name: 'ovs_ports',
|
name: 'ovs_ports',
|
||||||
|
autoEl: {
|
||||||
|
tag: 'div',
|
||||||
|
'data-qtip': gettext('Space-separated list of interfaces, for example: enp0s0 enp1s0'),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
column2.push({
|
column2.push({
|
||||||
xtype: 'textfield',
|
xtype: 'textfield',
|
||||||
|
Loading…
Reference in New Issue
Block a user