* [pve-devel] [PATCH widget-toolkit] networkedit: Add tooltip to bridge ports inputs
@ 2023-02-06 10:58 Christoph Heiss
2023-03-21 12:34 ` [pve-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Christoph Heiss @ 2023-02-06 10:58 UTC (permalink / raw)
To: pve-devel
.. as the exact format it takes might not be immediately obvious to
users.
Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
---
Bumped into that myself recently, it just avoids having to seek out
documentation for that one thing.
src/node/NetworkEdit.js | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/node/NetworkEdit.js b/src/node/NetworkEdit.js
index 6b25463..bb9add3 100644
--- a/src/node/NetworkEdit.js
+++ b/src/node/NetworkEdit.js
@@ -67,12 +67,20 @@ Ext.define('Proxmox.node.NetworkEdit', {
xtype: 'textfield',
fieldLabel: gettext('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') {
column2.push({
xtype: 'textfield',
fieldLabel: gettext('Bridge ports'),
name: 'ovs_ports',
+ autoEl: {
+ tag: 'div',
+ 'data-qtip': gettext('Space-separated list of interfaces, for example: enp0s0 enp1s0'),
+ },
});
column2.push({
xtype: 'textfield',
--
2.39.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-03-21 12:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-06 10:58 [pve-devel] [PATCH widget-toolkit] networkedit: Add tooltip to bridge ports inputs Christoph Heiss
2023-03-21 12:34 ` [pve-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox