when there is more than one function for a device, indent the individual
functions. This sets them visually apart from the 'pass all through as
one' entry

We have to use a html entity here, as extjs trims the normal whitespace.

Signed-off-by: Dominik Csapak <d.csa...@proxmox.com>
---
 www/manager6/form/MultiPCISelector.js | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/www/manager6/form/MultiPCISelector.js 
b/www/manager6/form/MultiPCISelector.js
index 97241bb0..e1ef691a 100644
--- a/www/manager6/form/MultiPCISelector.js
+++ b/www/manager6/form/MultiPCISelector.js
@@ -128,16 +128,17 @@ Ext.define('PVE.form.MultiPCISelector', {
        let slots = {};
        records.forEach((rec) => {
            let slotname = rec.data.id.slice(0, -2); // remove function
-           rec.set('slot', slotname);
            if (slots[slotname] !== undefined) {
                slots[slotname].count++;
+               rec.set('slot', slots[slotname]);
                return;
            }
-
            slots[slotname] = {
                count: 1,
            };
 
+           rec.set('slot', slots[slotname]);
+
            if (rec.data.id.endsWith('.0')) {
                slots[slotname].device = rec.data;
            }
@@ -213,6 +214,12 @@ Ext.define('PVE.form.MultiPCISelector', {
        {
            header: 'ID',
            dataIndex: 'id',
+           renderer: function(value, _md, rec) {
+               if (value.match(/\.[0-9a-f]/i) && rec.data.slot?.count > 1) {
+                   return `&emsp;${value}`;
+               }
+               return value;
+           },
            width: 150,
        },
        {
-- 
2.30.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to