@indigina/ui-kit 1.1.185 → 1.1.186

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.
@@ -7674,7 +7674,7 @@ class KitGridViewsComponent {
7674
7674
  viewState: {
7675
7675
  filter: [],
7676
7676
  sort: this.defaultSorting(),
7677
- columns: this.defaultColumns(),
7677
+ columns: buildGridViewColumns(this.defaultColumns()),
7678
7678
  },
7679
7679
  };
7680
7680
  this.store.dispatch(new AddGridView(view)).subscribe(() => {
@@ -7906,7 +7906,7 @@ class KitFilterCheckboxComponent {
7906
7906
  }
7907
7907
  }
7908
7908
  ngOnChanges({ filter }) {
7909
- if (!filter.isFirstChange()) {
7909
+ if (!filter?.isFirstChange()) {
7910
7910
  this.initializeSelectedValues();
7911
7911
  this.updateItemsState();
7912
7912
  }