You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
krzychu124 opened this issue
Sep 11, 2018
· 1 comment
· Fixed by #13082
Assignees
Labels
animationThis issue is related to Angular animations or CSS animationsP3An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
Item preview and action after drop not working under some conditions.
It looks like it's related to item count, because bug occurs when item count in list exceeds 10 elements.
What are the steps to reproduce?
Run demo-app inside this project with changed horizontalData array content src/demo-app/drag-drop/drag-drop.ts: horizontalData = [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ];
and try drag and drop items in horizontal list
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
Demo app inside this project - build v6.4.7 and v7.0.0-beta.0,
Webkit browsers: Chrome, Opera
Is there anything else we should know?
I've tested it on various web browsers:
-working on Edge 41.16299.611.0 and Mozilla 62.0 (64bit),
-broken on Chrome 69.0.3497.81 and Opera 55.0.2994.56, Chrome on Android 68.0.3440.91
The text was updated successfully, but these errors were encountered:
josephperrott
added
P3
An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
animation
This issue is related to Angular animations or CSS animations
labels
Sep 11, 2018
Fixes the list index not being calculated correctly, because the items are being sorted in memory based on their `top` position, even though the dragging is horizontal.
Fixesangular#13072.
…ly (#13082)
Fixes the list index not being calculated correctly, because the items are being sorted in memory based on their `top` position, even though the dragging is horizontal.
Fixes#13072.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
animationThis issue is related to Angular animations or CSS animationsP3An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
Bug, feature request, or proposal:
Bug
What is the expected behavior?
Item preview should be drawn correctly, and item should be placed according to location at preview
What is the current behavior?
v6.4.7 (smooth animations, broken sorting)

v7.0.0-beta.0 (partial animations, broken sorting)

Item preview and action after drop not working under some conditions.
It looks like it's related to item count, because bug occurs when item count in list exceeds 10 elements.
What are the steps to reproduce?
Run demo-app inside this project with changed horizontalData array content
src/demo-app/drag-drop/drag-drop.ts:
horizontalData = [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ];
and try drag and drop items in horizontal list
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
Demo app inside this project - build v6.4.7 and v7.0.0-beta.0,
Webkit browsers: Chrome, Opera
Is there anything else we should know?
I've tested it on various web browsers:
-working on Edge 41.16299.611.0 and Mozilla 62.0 (64bit),
-broken on Chrome 69.0.3497.81 and Opera 55.0.2994.56, Chrome on Android 68.0.3440.91
The text was updated successfully, but these errors were encountered: