Skip to content

Commit 74e4eb7

Browse files
committed
refactor(query-builder): class for mouse drag placeholder class
1 parent 220d05b commit 74e4eb7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

projects/igniteui-angular/src/lib/query-builder/query-builder-tree.component.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,12 @@
126126
<ng-template #operandTemplate let-expressionItem>
127127
@if (!expressionItem.inEditMode) {
128128
@if(dragService.dropGhostExpression && expressionItem === dragService.dropGhostExpression && dragService.isKeyboardDrag === false){
129-
<!-- TODO style properly -->
130-
<div [ngClass]="'igx-filter-tree__expression-item igx-filter-tree__expression-item-drop-ghost'">
129+
<div class="igx-filter-tree__expression-item igx-filter-tree__expression-item-drop-ghost igx-filter-tree__expression-item-drop-ghost-placeholder">
131130
<igx-chip [data]="expressionItem">
132131
{{this.resourceStrings.igx_query_builder_drop_ghost_text}}
133132
</igx-chip>
134133
</div>
135-
}
136-
@else {
134+
} @else {
137135
<div
138136
#dragRef
139137
igxDrop

0 commit comments

Comments
 (0)