survey-analytics 2.5.10 → 2.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm/shared2.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.5.10
2
+ * surveyjs - SurveyJS Dashboard library v2.5.11
3
3
  * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -11064,6 +11064,8 @@ class VisualizationMatrixDynamic extends VisualizationPanelDynamic {
11064
11064
  VisualizationManager.registerVisualizer("matrixdynamic", VisualizationMatrixDynamic);
11065
11065
 
11066
11066
  function isChoicesArraysEqual(choices1, choices2) {
11067
+ if (choices1 === undefined || choices2 === undefined)
11068
+ return false;
11067
11069
  if (choices1.length !== choices2.length)
11068
11070
  return false;
11069
11071
  for (let i = 0; i < choices1.length; i++) {