igniteui-angular 14.2.5 → 14.2.6

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.
@@ -38374,9 +38374,10 @@ class IgxSimpleComboComponent extends IgxComboBaseDirective {
38374
38374
  if (this.isRemote) {
38375
38375
  return this.getRemoteSelection(newSelection, oldSelection);
38376
38376
  }
38377
- if (this.displayKey !== null && this.displayKey !== undefined
38377
+ if (this.displayKey !== null
38378
+ && this.displayKey !== undefined
38378
38379
  && newSelection.length > 0) {
38379
- return this.convertKeysToItems(newSelection).map(e => e[this.displayKey])[0]?.toString() || '';
38380
+ return this.convertKeysToItems(newSelection).filter(e => e).map(e => e[this.displayKey])[0]?.toString() || '';
38380
38381
  }
38381
38382
  return newSelection[0]?.toString() || '';
38382
38383
  }
@@ -56108,7 +56109,8 @@ class IgxAdvancedFilteringDialogComponent {
56108
56109
  */
56109
56110
  applyChanges(event) {
56110
56111
  this.grid.crudService.endEdit(false, event);
56111
- this.grid.advancedFilteringExpressionsTree = this.queryBuilder.createExpressionTreeFromGroupItem(this.queryBuilder.rootGroup);
56112
+ this.queryBuilder.exitOperandEdit();
56113
+ this.grid.advancedFilteringExpressionsTree = this.queryBuilder.expressionTree;
56112
56114
  }
56113
56115
  /**
56114
56116
  * @hidden @internal