From 2dddf3ba59cdf92d85bcdb226a1852f5017ac12a Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 22 Oct 2020 18:24:24 +0200 Subject: [PATCH] followup: do not name field as me, which is reserverd for this Signed-off-by: Thomas Lamprecht --- www/manager6/dc/AuthEditLDAP.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/dc/AuthEditLDAP.js b/www/manager6/dc/AuthEditLDAP.js index ccaabc4e..015a5a6e 100644 --- a/www/manager6/dc/AuthEditLDAP.js +++ b/www/manager6/dc/AuthEditLDAP.js @@ -54,8 +54,8 @@ Ext.define('PVE.panel.LDAPInputPanel', { name: 'secure', uncheckedValue: 0, listeners: { - change: function(me, newValue) { - let verifyCheckbox = me.nextSibling('proxmoxcheckbox[name=verify]'); + change: function(field, newValue) { + let verifyCheckbox = field.nextSibling('proxmoxcheckbox[name=verify]'); if (newValue === true) { verifyCheckbox.enable(); } else {