mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-21 18:09:18 +00:00
node/net: add onlineHelp reference to interface add windows
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
5c833deffe
commit
25f37cbf9f
@ -193,7 +193,8 @@ Ext.define('Proxmox.node.NetworkView', {
|
|||||||
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
||||||
nodename: me.nodename,
|
nodename: me.nodename,
|
||||||
iftype: 'bridge',
|
iftype: 'bridge',
|
||||||
iface_default: find_next_iface_id('vmbr')
|
iface_default: find_next_iface_id('vmbr'),
|
||||||
|
onlineHelp: 'sysadmin_network_configuration',
|
||||||
});
|
});
|
||||||
win.on('destroy', reload);
|
win.on('destroy', reload);
|
||||||
win.show();
|
win.show();
|
||||||
@ -208,7 +209,8 @@ Ext.define('Proxmox.node.NetworkView', {
|
|||||||
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
||||||
nodename: me.nodename,
|
nodename: me.nodename,
|
||||||
iftype: 'bond',
|
iftype: 'bond',
|
||||||
iface_default: find_next_iface_id('bond')
|
iface_default: find_next_iface_id('bond'),
|
||||||
|
onlineHelp: 'sysadmin_network_configuration',
|
||||||
});
|
});
|
||||||
win.on('destroy', reload);
|
win.on('destroy', reload);
|
||||||
win.show();
|
win.show();
|
||||||
@ -223,7 +225,8 @@ Ext.define('Proxmox.node.NetworkView', {
|
|||||||
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
var win = Ext.create('Proxmox.node.NetworkEdit', {
|
||||||
nodename: me.nodename,
|
nodename: me.nodename,
|
||||||
iftype: 'vlan',
|
iftype: 'vlan',
|
||||||
iface_default: 'interfaceX.1'
|
iface_default: 'interfaceX.1',
|
||||||
|
onlineHelp: 'sysadmin_network_configuration',
|
||||||
});
|
});
|
||||||
win.on('destroy', reload);
|
win.on('destroy', reload);
|
||||||
win.show();
|
win.show();
|
||||||
|
Loading…
Reference in New Issue
Block a user