From c35dd140babfdcce537a64d242ba4030f0051c56 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Tue, 9 Oct 2018 17:38:51 +0300 Subject: [PATCH] chore: wrong name for drag&drop input Fixes a typo in the name for the `cdkDragEnterPredicate` input. --- src/cdk/drag-drop/drop.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdk/drag-drop/drop.ts b/src/cdk/drag-drop/drop.ts index 2970751cbee7..1a2e3eeb726c 100644 --- a/src/cdk/drag-drop/drop.ts +++ b/src/cdk/drag-drop/drop.ts @@ -80,7 +80,7 @@ export class CdkDrop implements OnInit, OnDestroy { * Function that is used to determine whether an item * is allowed to be moved into a drop container. */ - @Input('cdkDropEnterPredication') + @Input('cdkDropEnterPredicate') enterPredicate: (drag?: CdkDrag, drop?: CdkDrop) => boolean = () => true /** Emits when the user drops an item inside the container. */