public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH pve-manager] ui: cpu flags: make password managers ignore flag radio buttons
@ 2026-05-20 12:46 Arthur Bied-Charreton
  2026-05-20 12:53 ` Dominik Csapak
  2026-05-20 13:43 ` Thomas Lamprecht
  0 siblings, 2 replies; 6+ messages in thread
From: Arthur Bied-Charreton @ 2026-05-20 12:46 UTC (permalink / raw)
  To: pve-devel

Password manager extensions scan every new <input> element. The flag
selector grid creates hundreds of radio buttons through its
widgetcolumn, causing the extension to peg the CPU while it checks each
one for autofill.

Mark the radio inputs with autocomplete="off" and the extension-specific
ignore attributes so they are skipped during the scan.

Signed-off-by: Arthur Bied-Charreton <a.bied-charreton@proxmox.com>
---
 www/manager6/form/VMCPUFlagSelector.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/www/manager6/form/VMCPUFlagSelector.js b/www/manager6/form/VMCPUFlagSelector.js
index ea20108d..f8d4caad 100644
--- a/www/manager6/form/VMCPUFlagSelector.js
+++ b/www/manager6/form/VMCPUFlagSelector.js
@@ -263,16 +263,19 @@ Ext.define('PVE.form.VMCPUFlagSelector', {
                         boxLabelAlign: 'before',
                         inputValue: '-',
                         isFormField: false,
+                        inputAttrTpl: 'autocomplete="off" data-bwignore data-1p-ignore data-lpignore="true"',
                     },
                     {
                         checked: true,
                         inputValue: '=',
                         isFormField: false,
+                        inputAttrTpl: 'autocomplete="off" data-bwignore data-1p-ignore data-lpignore="true"',
                     },
                     {
                         boxLabel: '+',
                         inputValue: '+',
                         isFormField: false,
+                        inputAttrTpl: 'autocomplete="off" data-bwignore data-1p-ignore data-lpignore="true"',
                     },
                 ],
             },
-- 
2.47.3




^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-05-20 14:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-20 12:46 [PATCH pve-manager] ui: cpu flags: make password managers ignore flag radio buttons Arthur Bied-Charreton
2026-05-20 12:53 ` Dominik Csapak
2026-05-20 12:58   ` David Riley
2026-05-20 13:08     ` David Riley
2026-05-20 13:43 ` Thomas Lamprecht
2026-05-20 14:07   ` Arthur Bied-Charreton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal