File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -293,6 +293,7 @@ export default function sortableContainer(WrappedComponent, config = {withRef: f
293293 if ( hideSortableGhost ) {
294294 this . sortableGhost = node ;
295295 node . style . visibility = 'hidden' ;
296+ node . style . opacity = 0 ;
296297 }
297298
298299 this . minTranslate = { } ;
@@ -380,6 +381,7 @@ export default function sortableContainer(WrappedComponent, config = {withRef: f
380381
381382 if ( hideSortableGhost && this . sortableGhost ) {
382383 this . sortableGhost . style . visibility = '' ;
384+ this . sortableGhost . style . opacity = '' ;
383385 }
384386
385387 const nodes = this . manager . refs [ collection ] ;
@@ -597,6 +599,7 @@ export default function sortableContainer(WrappedComponent, config = {withRef: f
597599 */
598600 this . sortableGhost = node ;
599601 node . style . visibility = 'hidden' ;
602+ node . style . opacity = 0 ;
600603 }
601604 continue ;
602605 }
You can’t perform that action at this time.
0 commit comments