@syncfusion/ej2-querybuilder 30.1.40 → 30.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.
@@ -304,7 +304,7 @@ let QueryBuilder = class QueryBuilder extends Component {
304
304
  else if (this.columns && this.columns.length) {
305
305
  const columns = this.columns;
306
306
  for (let i = 0, len = columns.length; i < len; i++) {
307
- if (columns[i].category) {
307
+ if (columns[i].category && columns[i].category !== this.l10n.getConstant('OtherFields')) {
308
308
  this.fields = { text: 'label', value: 'field', groupBy: 'category' };
309
309
  }
310
310
  else {