File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed
Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -1889,22 +1889,24 @@ export function handleEnd<T>(state: DragState<T> | SynthDragState<T>) {
18891889 }
18901890
18911891 requestAnimationFrame ( ( ) => {
1892- removeClass (
1893- state . draggedNodes . map ( ( x ) => x . el ) ,
1894- dropZoneClass
1895- ) ;
1892+ requestAnimationFrame ( ( ) => {
1893+ removeClass (
1894+ state . draggedNodes . map ( ( x ) => x . el ) ,
1895+ dropZoneClass
1896+ ) ;
18961897
1897- removeClass (
1898- state . draggedNodes . map ( ( x ) => x . el ) ,
1899- state . initialParent . data ?. config ?. longPressClass
1900- ) ;
1898+ removeClass (
1899+ state . draggedNodes . map ( ( x ) => x . el ) ,
1900+ state . initialParent . data ?. config ?. longPressClass
1901+ ) ;
19011902
1902- removeClass (
1903- state . draggedNodes . map ( ( x ) => x . el ) ,
1904- isSynth
1905- ? state . initialParent . data . config . synthDragPlaceholderClass
1906- : state . initialParent . data ?. config ?. dragPlaceholderClass
1907- ) ;
1903+ removeClass (
1904+ state . draggedNodes . map ( ( x ) => x . el ) ,
1905+ isSynth
1906+ ? state . initialParent . data . config . synthDragPlaceholderClass
1907+ : state . initialParent . data ?. config ?. dragPlaceholderClass
1908+ ) ;
1909+ } ) ;
19081910 } ) ;
19091911
19101912 deselect ( state . draggedNodes , state . currentParent , state ) ;
You can’t perform that action at this time.
0 commit comments