Преглед изворни кода

HUE-1645 [core] Multi select chooser has Move and Clean sections

Fixed for..in loop
Enrico Berti пре 12 година
родитељ
комит
90587081f4
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      desktop/core/static/js/jquery.selector.js

+ 3 - 1
desktop/core/static/js/jquery.selector.js

@@ -60,7 +60,9 @@
     });
     var sortedKeys = [];
     for (var key in addressBook) {
-      sortedKeys.push(key);
+      if (addressBook.hasOwnProperty(key)) {
+        sortedKeys.push(key);
+      }
     }
     sortedKeys.sort();