@revolist/revogrid 4.9.40 → 4.9.41

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.
@@ -777,8 +777,8 @@ class SortingPlugin extends column_drag_plugin.BasePlugin {
777
777
  }
778
778
  defaultCellCompare(prop, a, b) {
779
779
  var _a, _b;
780
- const av = (_a = a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
781
- const bv = (_b = b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
780
+ const av = (_a = a === null || a === void 0 ? void 0 : a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
781
+ const bv = (_b = b === null || b === void 0 ? void 0 : b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
782
782
  return av == bv ? 0 : av > bv ? 1 : -1;
783
783
  }
784
784
  descCellCompare(cmp) {