File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
projects/igniteui-angular/src/lib/query-builder Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -883,7 +883,8 @@ export class QueryBuilderFunctions {
883883
884884 public static getDropGhost ( fixture : ComponentFixture < any > ) : Element {
885885 var expressionsContainer = QueryBuilderFunctions . getQueryBuilderExpressionsContainer ( fixture ) ;
886- return expressionsContainer . querySelector ( `div.${ QueryBuilderSelectors . FILTER_TREE_EXPRESSION_ITEM_DROP_GHOST } ` ) ;
886+ return expressionsContainer . querySelector ( `div.${ QueryBuilderSelectors . FILTER_TREE_EXPRESSION_ITEM_DROP_GHOST } ` ) ??
887+ expressionsContainer . querySelector ( `div.${ QueryBuilderSelectors . FILTER_TREE_EXPRESSION_ITEM_KEYBOARD_GHOST } ` ) ;
887888 }
888889
889890 public static getDropGhostBounds ( fixture : ComponentFixture < any > ) : DOMRect {
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ export const QueryBuilderSelectors = {
6969 FILTER_TREE_EXPRESSION_CONTEXT_MENU : IGX_FILTER_TREE + '__expression-context-menu' ,
7070 FILTER_TREE_EXPRESSION_ITEM : IGX_FILTER_TREE + '__expression-item' ,
7171 FILTER_TREE_EXPRESSION_ITEM_DROP_GHOST : IGX_FILTER_TREE + '__expression-item-drop-ghost' ,
72+ FILTER_TREE_EXPRESSION_ITEM_KEYBOARD_GHOST : IGX_FILTER_TREE + '__expression-item-keyboard-ghost' ,
7273 FILTER_TREE_EXPRESSION_ITEM_GHOST : IGX_FILTER_TREE + '__expression-item-ghost' ,
7374 FILTER_TREE_EXPRESSION_SECTION : IGX_FILTER_TREE + '__expression-section' ,
7475
You can’t perform that action at this time.
0 commit comments