pull/5370/head
Joseph Izang 10 months ago
parent e10ea92345
commit 6a50dbca26
  1. 4
      libs/remix-ui/workspace/src/lib/components/flat-tree-drop.tsx

@ -78,10 +78,10 @@ export const FlatTreeDrop = (props: FlatTreeDropProps) => {
if (dragSource.isDirectory) { if (dragSource.isDirectory) {
moveFolder(path, dragSource.path) moveFolder(path, dragSource.path)
await moveFoldersSilently(props.selectedItems, dragDestination.path) await moveFoldersSilently(props.selectedItems, path)
} else { } else {
moveFile(path, dragSource.path) moveFile(path, dragSource.path)
await moveFilesSilently(props.selectedItems, dragDestination.path) await moveFilesSilently(props.selectedItems, path)
} }
} }
} }

Loading…
Cancel
Save