@pocketprep/ui-kit 3.4.62 → 3.4.63

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.
@@ -14588,7 +14588,10 @@ let _e = class extends be {
14588
14588
  }
14589
14589
  }
14590
14590
  defaultSortChanged() {
14591
- this.defaultSort && (this.currentSort = JSON.parse(JSON.stringify(this.defaultSort)), this.emitSort());
14591
+ if (!this.defaultSort)
14592
+ return;
14593
+ const s = JSON.stringify(this.defaultSort), o = JSON.stringify(this.currentSort);
14594
+ s !== o && (this.currentSort = JSON.parse(s), this.emitSort());
14592
14595
  }
14593
14596
  emitSort() {
14594
14597
  return this.currentSort;