Skip to content

Commit a411afe

Browse files
committed
fix(drag): Fix overlapping in different breakpoints after item resize with floating on false
1 parent 5b975e2 commit a411afe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gridList/gridList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class GridList {
330330
// The fixed item keeps its exact position
331331
if (fixedItem && item === fixedItem ||
332332
!item.dragAndDrop ||
333-
(!this.options.floating && !this.isItemFloating(item))) {
333+
(!this.options.floating && this.isItemFloating(item))) {
334334
continue;
335335
}
336336

0 commit comments

Comments
 (0)