@syncfusion/ej2-querybuilder 30.1.39 → 30.1.40

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.
@@ -2372,10 +2372,16 @@ let QueryBuilder = class QueryBuilder extends Component {
2372
2372
  }
2373
2373
  if (tempRule.operator.indexOf('null') > -1 || (tempRule.operator.indexOf('empty') > -1)) {
2374
2374
  const parentElem = operatorElem.parentElement.querySelector('.e-rule-value');
2375
- const tooltipElem = parentElem.querySelector('.e-tooltip.e-input-group');
2375
+ let tooltipElem = parentElem.querySelector('.e-tooltip.e-input-group');
2376
2376
  if (tooltipElem) {
2377
2377
  getComponent(tooltipElem, 'tooltip').destroy();
2378
2378
  }
2379
+ else if (prevOper.indexOf('in') > -1) {
2380
+ tooltipElem = parentElem.querySelector('.e-tooltip');
2381
+ if (tooltipElem) {
2382
+ getComponent(tooltipElem, 'tooltip').destroy();
2383
+ }
2384
+ }
2379
2385
  removeClass([parentElem], 'e-show');
2380
2386
  addClass([parentElem], 'e-hide');
2381
2387
  }