mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-06-26 20:45:39 +00:00
network edit: shorten bridge VLAN ID label and tooltip
This is certainly a bit subjective, but IMO not much information is lost, and the "space-separated" in the tooltip was never true (at least for the backend), so might be even confusing; the example should be enough to direct users in the right direction, real docs in the documentation would be way better anyway than all those subtle UI hints. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
ffe41ad5e3
commit
2aa5d7e7ba
@ -61,13 +61,13 @@ Ext.define('Proxmox.node.NetworkEdit', {
|
|||||||
|
|
||||||
if (me.iftype === 'bridge') {
|
if (me.iftype === 'bridge') {
|
||||||
let vids = Ext.create('Ext.form.field.Text', {
|
let vids = Ext.create('Ext.form.field.Text', {
|
||||||
fieldLabel: gettext('Bridge VLAN IDs'),
|
fieldLabel: gettext('VLAN IDs'),
|
||||||
name: 'bridge_vids',
|
name: 'bridge_vids',
|
||||||
emptyText: '2-4094',
|
emptyText: '2-4094',
|
||||||
disabled: true,
|
disabled: true,
|
||||||
autoEl: {
|
autoEl: {
|
||||||
tag: 'div',
|
tag: 'div',
|
||||||
'data-qtip': gettext("Space-separated list of VLANs offloaded to the hardware. Useful for NICs with restricted VLAN offloading support. Single VLAN IDs and ranges. For example: '2 4 100-200'"),
|
'data-qtip': gettext("List of VLAN IDs and ranges, useful for NICs with restricted VLAN offloading support. For example: '2 4 100-200'"),
|
||||||
},
|
},
|
||||||
validator: function(value) {
|
validator: function(value) {
|
||||||
if (!value) { // empty
|
if (!value) { // empty
|
||||||
|
Loading…
Reference in New Issue
Block a user