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 <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-03-28 17:42:49 +02:00
parent e1608311da
commit 58bff886fb

View File

@ -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',