Skip to content

Commit e25d648

Browse files
authored
Merge pull request #8776 from IgniteUI/sstoychev/fix-8761
fix(drop): resolving @input declaration error #8761 - master
2 parents 1f886c0 + 6df593b commit e25d648

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

projects/igniteui-angular/src/lib/directives/drag-drop/drag-drop.directive.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,6 +1327,8 @@ export class IgxDragDirective implements AfterContentInit, OnDestroy {
13271327
})
13281328
export class IgxDropDirective implements OnInit, OnDestroy {
13291329

1330+
private _data: any;
1331+
13301332
/**
13311333
* - Save data inside the `igxDrop` directive. This can be set when instancing `igxDrop` on an element.
13321334
* ```html
@@ -1335,7 +1337,6 @@ export class IgxDropDirective implements OnInit, OnDestroy {
13351337
* @memberof IgxDropDirective
13361338
*/
13371339
@Input('igxDrop')
1338-
private _data: any;
13391340
public get data(): any {
13401341
return this._data;
13411342
}

0 commit comments

Comments
 (0)