Signed-off-by: Timothy Nicholson <[email protected]> --- changes since v1 [0]: - no right-align on freeform field (real-value)
thanks for feedback :) [0]: https://lore.proxmox.com/pve-devel/[email protected]/ 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 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
