@indigina/ui-kit 1.1.399 → 1.1.401

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.
@@ -9481,7 +9481,10 @@ class KitGridSearchComponent {
9481
9481
  }
9482
9482
  closeButtonClick() {
9483
9483
  this.toggleSearch.emit(false);
9484
- this.store.dispatch(new RemoveGridSearch()).subscribe(() => {
9484
+ this.store.dispatch([
9485
+ new RemoveGridSearch(),
9486
+ new SetGridSkip(0),
9487
+ ]).subscribe(() => {
9485
9488
  this.kitGridUrlStateService.setGridStateToUrl(this.store.selectSnapshot(KIT_GRID_STATE_TOKEN));
9486
9489
  });
9487
9490
  }