* [PATCH manager] ui: sdn: use unicode characters for le and ge
@ 2026-06-05 13:40 Maximiliano Sandoval
0 siblings, 0 replies; only message in thread
From: Maximiliano Sandoval @ 2026-06-05 13:40 UTC (permalink / raw)
To: pve-devel
The characters in question are:
- LESS-THAN OR EQUAL TO (U+2264)
- GREATER-THAN OR EQUAL TO (U+2265)
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
www/manager6/sdn/PrefixListPanel.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/www/manager6/sdn/PrefixListPanel.js b/www/manager6/sdn/PrefixListPanel.js
index 174f30baf..95bc3e9f5 100644
--- a/www/manager6/sdn/PrefixListPanel.js
+++ b/www/manager6/sdn/PrefixListPanel.js
@@ -90,7 +90,7 @@ Ext.define('PVE.sdn.EditPrefixListEntryWindow', {
},
{
xtype: 'proxmoxintegerfield',
- fieldLabel: gettext('Prefix <='),
+ fieldLabel: gettext('Prefix ≤'),
name: 'le',
minValue: 0,
maxValue: 128,
@@ -100,7 +100,7 @@ Ext.define('PVE.sdn.EditPrefixListEntryWindow', {
},
{
xtype: 'proxmoxintegerfield',
- fieldLabel: gettext('Prefix >='),
+ fieldLabel: gettext('Prefix ≥'),
name: 'ge',
minValue: 0,
maxValue: 128,
@@ -236,12 +236,12 @@ Ext.define('PVE.sdn.PrefixListEntriesView', {
flex: 1,
},
{
- text: gettext('Prefix <='),
+ text: gettext('Prefix ≤'),
dataIndex: 'le',
flex: 1,
},
{
- text: gettext('Prefix >='),
+ text: gettext('Prefix ≥'),
dataIndex: 'ge',
flex: 1,
},
--
2.47.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-05 13:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-05 13:40 [PATCH manager] ui: sdn: use unicode characters for le and ge Maximiliano Sandoval
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.