Skip to content

Commit 639e52f

Browse files
committed
fix(*): Close QB dropdowns explicitly
1 parent 488555a commit 639e52f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/igniteui-angular/query-builder/src/query-builder/query-builder-tree.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ export class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDestroy {
639639
*/
640640
public onEntityChangeCancel() {
641641
this.entityChangeDialog.close();
642-
// entitySelect will close automatically
642+
this.entitySelect.close();
643643
this._entityNewValue = null;
644644
}
645645

@@ -685,7 +685,7 @@ export class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDestroy {
685685
this.searchValue.value = null;
686686

687687
this.entityChangeDialog.close();
688-
// entitySelect will close automatically
688+
this.entitySelect.close();
689689

690690
this._entityNewValue = null;
691691
this.innerQueryNewExpressionTree = null;
@@ -1247,7 +1247,7 @@ export class IgxQueryBuilderTreeComponent implements AfterViewInit, OnDestroy {
12471247
public onConditionSelectChanging(event: ISelectionEventArgs) {
12481248
event.cancel = true;
12491249
this.selectedCondition = event.newSelection.value;
1250-
// conditionSelect will close automatically
1250+
this.conditionSelect.close();
12511251
this.cdr.detectChanges();
12521252
}
12531253

0 commit comments

Comments
 (0)