[pve-devel] [PATCH widget-toolkit v2] fix #5831: ui: right-align s.m.a.r.t numerical table data
Timothy Nicholson
t.nicholson at proxmox.com
Mon Nov 11 14:30:00 CET 2024
Signed-off-by: Timothy Nicholson <t.nicholson at proxmox.com>
---
changes since v1 [0]:
- no right-align on freeform field (real-value)
thanks for feedback :)
[0]: https://lore.proxmox.com/pve-devel/20241111094050.22619-1-t.nicholson@proxmox.com/
src/window/DiskSmart.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/window/DiskSmart.js b/src/window/DiskSmart.js
index 9096fec..18ff55f 100644
--- a/src/window/DiskSmart.js
+++ b/src/window/DiskSmart.js
@@ -29,6 +29,7 @@ Ext.define('Proxmox.window.DiskSmart', {
text: 'ID',
dataIndex: 'id',
width: 50,
+ align: 'right',
},
{
text: gettext('Attribute'),
@@ -45,16 +46,19 @@ Ext.define('Proxmox.window.DiskSmart', {
text: gettext('Normalized'),
dataIndex: 'real-normalized',
width: 60,
+ align: 'right',
},
{
text: gettext('Threshold'),
dataIndex: 'threshold',
width: 60,
+ align: 'right',
},
{
text: gettext('Worst'),
dataIndex: 'worst',
width: 60,
+ align: 'right',
},
{
text: gettext('Flags'),
--
2.39.5
More information about the pve-devel
mailing list