From 19dfeb4f178478117746986fa16c7f8cc2f70463 Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Wed, 7 Feb 2024 16:06:49 +0000 Subject: [PATCH] Issue #3419730 by catch, Spokje: [jQuery 4] TypeError: $.isArray is not a function at states.Dependent.verifyConstraints --- core/misc/states.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/misc/states.js b/core/misc/states.js index 218b89268884..ce4787dee445 100644 --- a/core/misc/states.js +++ b/core/misc/states.js @@ -304,7 +304,7 @@ */ verifyConstraints(constraints, selector) { let result; - if ($.isArray(constraints)) { + if (Array.isArray(constraints)) { // This constraint is an array (OR or XOR). const hasXor = $.inArray('xor', constraints) === -1; const len = constraints.length; -- GitLab