ngx-ode-ui 4.4.0 → 4.5.0

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.
@@ -5261,6 +5261,7 @@
5261
5261
  // Compare strings case-insensitively
5262
5262
  value1 = value1.toLowerCase();
5263
5263
  value2 = value2.toLowerCase();
5264
+ result = value1.localeCompare(value2);
5264
5265
  }
5265
5266
  else if (type1 === 'object') {
5266
5267
  // For basic objects, use the position of the object
@@ -5271,9 +5272,9 @@
5271
5272
  if (isObject(value2)) {
5272
5273
  value2 = v2.index;
5273
5274
  }
5274
- }
5275
- if (value1 !== value2) {
5276
- result = value1 < value2 ? -1 : 1;
5275
+ if (value1 !== value2) {
5276
+ result = value1 < value2 ? -1 : 1;
5277
+ }
5277
5278
  }
5278
5279
  }
5279
5280
  else {