From 58bff886fb8d54072f2c0b84c0e9a575b0743a45 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 28 Mar 2023 17:42:49 +0200 Subject: [PATCH] window: ldap auth edit: avoid relying on the default bind property When using a string as bind config ExtJS maps this to the property defined by the components defaultBindProperty, which is a bit to subtle for my taste. Signed-off-by: Thomas Lamprecht --- src/window/AuthEditLDAP.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/window/AuthEditLDAP.js b/src/window/AuthEditLDAP.js index 3e8ce88..43d2234 100644 --- a/src/window/AuthEditLDAP.js +++ b/src/window/AuthEditLDAP.js @@ -92,7 +92,9 @@ Ext.define('Proxmox.panel.LDAPInputPanel', { xtype: 'proxmoxcheckbox', fieldLabel: gettext('Anonymous Search'), name: 'anonymous_search', - bind: '{anonymous_search}', + bind: { + value: '{anonymous_search}', + }, }, { xtype: 'proxmoxtextfield',