Skip to content

Commit b07df79

Browse files
authored
Merge pull request #3520 from IgniteUI/ttonev/fix-3514-samples
docs(samples): fixed drag & drop errow in kanban sample
2 parents f19cdce + e6984ad commit b07df79

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/interactions/drag-drop/kanban-sample/kanban-sample.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ interface IListItem {
2020
styleUrls: ['./kanban-sample.component.scss']
2121
})
2222
export class KanbanSampleComponent implements OnInit {
23+
@ViewChild('toDo', { read: ElementRef }) public toDo: ElementRef;
24+
@ViewChild('inProgress', { read: ElementRef }) public inProgress: ElementRef;
25+
@ViewChild('done', { read: ElementRef }) public done: ElementRef;
2326
public toDoList: IListItem[];
2427
public inProgressList: IListItem[];
2528
public doneList: IListItem[];

0 commit comments

Comments
 (0)