@indigina/ui-kit 1.1.519 → 1.1.520

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.
@@ -6733,11 +6733,8 @@ class KitGridComponent {
6733
6733
  this.checkboxColumn = computed(() => this.columnMarkers().find(this.isCheckboxColumn), ...(ngDevMode ? [{ debugName: "checkboxColumn" }] : /* istanbul ignore next */ []));
6734
6734
  this.selectableSettings = computed(() => {
6735
6735
  const column = this.checkboxColumn();
6736
- if (!column) {
6737
- return false;
6738
- }
6739
6736
  return {
6740
- mode: column.type() === KitGridCheckboxColumnType.RADIO ? 'single' : 'multiple',
6737
+ mode: column?.type() === KitGridCheckboxColumnType.RADIO ? 'single' : 'multiple',
6741
6738
  checkboxOnly: true,
6742
6739
  };
6743
6740
  }, ...(ngDevMode ? [{ debugName: "selectableSettings" }] : /* istanbul ignore next */ []));