@syncfusion/ej2-querybuilder 23.1.39 → 23.1.41

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.
@@ -1564,7 +1564,7 @@ let QueryBuilder = class QueryBuilder extends Component {
1564
1564
  this.GetRootColumnName(rule.field) === this.GetRootColumnName(this.previousColumn.field))) {
1565
1565
  const subField = this.selectedColumn.columns;
1566
1566
  for (let i = 0; i < subField.length; i++) {
1567
- if (rule.field === subField[i].field || rule.field.indexOf(subField[i].field) > -1) {
1567
+ if (rule.field === subField[i].field) {
1568
1568
  dropDownList.value = subField[i].field;
1569
1569
  this.selectedColumn = subField[i];
1570
1570
  subFieldValue = true;