Skip to content

Commit c49d7b2

Browse files
committed
build: fix drag-drop demo
I left in some invalid code in the `drag-drop` demo by accident while working on #20668 which is throwing an error now.
1 parent 1c83423 commit c49d7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dev-app/drag-drop/drag-drop-demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h2>To do</h2>
99
[cdkDropListData]="todo">
1010
<div *ngFor="let item of todo" cdkDrag>
1111
{{item}}
12-
<ng-container cdkDragHandle>move</ng-container>
12+
<mat-icon cdkDragHandle svgIcon="dnd-move"></mat-icon>
1313
</div>
1414
</div>
1515
</div>

0 commit comments

Comments
 (0)