Skip to content

Commit 72547a4

Browse files
authored
fix(cdk/drag-drop): native event not passed as parameter to drop container (#25763)
* fix(cdk/drag-drop): native event not passed as parameter to drop CredentialsContainer Fixes a bug where native event was always an empty object because it was not passed to the container drop function and the default `{}` object was always used. * fix(cdk/drag-drop): Added missing trailing comma
1 parent 0b423d4 commit 72547a4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cdk/drag-drop/drag-ref.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,7 @@ export class DragRef<T = any> {
971971
isPointerOverContainer,
972972
distance,
973973
pointerPosition,
974+
event,
974975
);
975976
this._dropContainer = this._initialContainer;
976977
});

0 commit comments

Comments
 (0)